UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

1,370 lines 66.6 kB
import * as constructs from 'constructs'; import * as cdk from '../../core'; import * as cfn_parse from '../../core/lib/helpers-internal'; /** * Properties for defining a `CfnAccessLogSubscription` * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-accesslogsubscription.html */ export interface CfnAccessLogSubscriptionProps { /** * `AWS::VpcLattice::AccessLogSubscription.DestinationArn` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-accesslogsubscription.html#cfn-vpclattice-accesslogsubscription-destinationarn */ readonly destinationArn: string; /** * `AWS::VpcLattice::AccessLogSubscription.ResourceIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-accesslogsubscription.html#cfn-vpclattice-accesslogsubscription-resourceidentifier */ readonly resourceIdentifier?: string; /** * `AWS::VpcLattice::AccessLogSubscription.Tags` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-accesslogsubscription.html#cfn-vpclattice-accesslogsubscription-tags */ readonly tags?: cdk.CfnTag[]; } /** * A CloudFormation `AWS::VpcLattice::AccessLogSubscription` * * * * @cloudformationResource AWS::VpcLattice::AccessLogSubscription * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-accesslogsubscription.html */ export declare class CfnAccessLogSubscription extends cdk.CfnResource implements cdk.IInspectable { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME = "AWS::VpcLattice::AccessLogSubscription"; /** * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnAccessLogSubscription; /** * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * * @cloudformationAttribute Id */ readonly attrId: string; /** * * @cloudformationAttribute ResourceArn */ readonly attrResourceArn: string; /** * * @cloudformationAttribute ResourceId */ readonly attrResourceId: string; /** * `AWS::VpcLattice::AccessLogSubscription.DestinationArn` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-accesslogsubscription.html#cfn-vpclattice-accesslogsubscription-destinationarn */ destinationArn: string; /** * `AWS::VpcLattice::AccessLogSubscription.ResourceIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-accesslogsubscription.html#cfn-vpclattice-accesslogsubscription-resourceidentifier */ resourceIdentifier: string | undefined; /** * `AWS::VpcLattice::AccessLogSubscription.Tags` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-accesslogsubscription.html#cfn-vpclattice-accesslogsubscription-tags */ readonly tags: cdk.TagManager; /** * Create a new `AWS::VpcLattice::AccessLogSubscription`. * * @param scope - scope in which this resource is defined * @param id - scoped id of the resource * @param props - resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnAccessLogSubscriptionProps); /** * Examines the CloudFormation resource and discloses attributes. * * @param inspector - tree inspector to collect and process attributes * */ inspect(inspector: cdk.TreeInspector): void; protected get cfnProperties(): { [key: string]: any; }; protected renderProperties(props: { [key: string]: any; }): { [key: string]: any; }; } /** * Properties for defining a `CfnAuthPolicy` * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-authpolicy.html */ export interface CfnAuthPolicyProps { /** * `AWS::VpcLattice::AuthPolicy.Policy` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-authpolicy.html#cfn-vpclattice-authpolicy-policy */ readonly policy: any | cdk.IResolvable; /** * `AWS::VpcLattice::AuthPolicy.ResourceIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-authpolicy.html#cfn-vpclattice-authpolicy-resourceidentifier */ readonly resourceIdentifier: string; } /** * A CloudFormation `AWS::VpcLattice::AuthPolicy` * * * * @cloudformationResource AWS::VpcLattice::AuthPolicy * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-authpolicy.html */ export declare class CfnAuthPolicy extends cdk.CfnResource implements cdk.IInspectable { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME = "AWS::VpcLattice::AuthPolicy"; /** * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnAuthPolicy; /** * * @cloudformationAttribute State */ readonly attrState: string; /** * `AWS::VpcLattice::AuthPolicy.Policy` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-authpolicy.html#cfn-vpclattice-authpolicy-policy */ policy: any | cdk.IResolvable; /** * `AWS::VpcLattice::AuthPolicy.ResourceIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-authpolicy.html#cfn-vpclattice-authpolicy-resourceidentifier */ resourceIdentifier: string; /** * Create a new `AWS::VpcLattice::AuthPolicy`. * * @param scope - scope in which this resource is defined * @param id - scoped id of the resource * @param props - resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnAuthPolicyProps); /** * Examines the CloudFormation resource and discloses attributes. * * @param inspector - tree inspector to collect and process attributes * */ inspect(inspector: cdk.TreeInspector): void; protected get cfnProperties(): { [key: string]: any; }; protected renderProperties(props: { [key: string]: any; }): { [key: string]: any; }; } /** * Properties for defining a `CfnListener` * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html */ export interface CfnListenerProps { /** * `AWS::VpcLattice::Listener.DefaultAction` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html#cfn-vpclattice-listener-defaultaction */ readonly defaultAction: CfnListener.DefaultActionProperty | cdk.IResolvable; /** * `AWS::VpcLattice::Listener.Protocol` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html#cfn-vpclattice-listener-protocol */ readonly protocol: string; /** * `AWS::VpcLattice::Listener.Name` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html#cfn-vpclattice-listener-name */ readonly name?: string; /** * `AWS::VpcLattice::Listener.Port` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html#cfn-vpclattice-listener-port */ readonly port?: number; /** * `AWS::VpcLattice::Listener.ServiceIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html#cfn-vpclattice-listener-serviceidentifier */ readonly serviceIdentifier?: string; /** * `AWS::VpcLattice::Listener.Tags` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html#cfn-vpclattice-listener-tags */ readonly tags?: cdk.CfnTag[]; } /** * A CloudFormation `AWS::VpcLattice::Listener` * * * * @cloudformationResource AWS::VpcLattice::Listener * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html */ export declare class CfnListener extends cdk.CfnResource implements cdk.IInspectable { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME = "AWS::VpcLattice::Listener"; /** * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnListener; /** * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * * @cloudformationAttribute Id */ readonly attrId: string; /** * * @cloudformationAttribute ServiceArn */ readonly attrServiceArn: string; /** * * @cloudformationAttribute ServiceId */ readonly attrServiceId: string; /** * `AWS::VpcLattice::Listener.DefaultAction` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html#cfn-vpclattice-listener-defaultaction */ defaultAction: CfnListener.DefaultActionProperty | cdk.IResolvable; /** * `AWS::VpcLattice::Listener.Protocol` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html#cfn-vpclattice-listener-protocol */ protocol: string; /** * `AWS::VpcLattice::Listener.Name` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html#cfn-vpclattice-listener-name */ name: string | undefined; /** * `AWS::VpcLattice::Listener.Port` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html#cfn-vpclattice-listener-port */ port: number | undefined; /** * `AWS::VpcLattice::Listener.ServiceIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html#cfn-vpclattice-listener-serviceidentifier */ serviceIdentifier: string | undefined; /** * `AWS::VpcLattice::Listener.Tags` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-listener.html#cfn-vpclattice-listener-tags */ readonly tags: cdk.TagManager; /** * Create a new `AWS::VpcLattice::Listener`. * * @param scope - scope in which this resource is defined * @param id - scoped id of the resource * @param props - resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnListenerProps); /** * Examines the CloudFormation resource and discloses attributes. * * @param inspector - tree inspector to collect and process attributes * */ inspect(inspector: cdk.TreeInspector): void; protected get cfnProperties(): { [key: string]: any; }; protected renderProperties(props: { [key: string]: any; }): { [key: string]: any; }; } export declare namespace CfnListener { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-listener-defaultaction.html */ interface DefaultActionProperty { /** * `CfnListener.DefaultActionProperty.Forward` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-listener-defaultaction.html#cfn-vpclattice-listener-defaultaction-forward */ readonly forward: CfnListener.ForwardProperty | cdk.IResolvable; } } export declare namespace CfnListener { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-listener-forward.html */ interface ForwardProperty { /** * `CfnListener.ForwardProperty.TargetGroups` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-listener-forward.html#cfn-vpclattice-listener-forward-targetgroups */ readonly targetGroups: Array<CfnListener.WeightedTargetGroupProperty | cdk.IResolvable> | cdk.IResolvable; } } export declare namespace CfnListener { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-listener-weightedtargetgroup.html */ interface WeightedTargetGroupProperty { /** * `CfnListener.WeightedTargetGroupProperty.TargetGroupIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-listener-weightedtargetgroup.html#cfn-vpclattice-listener-weightedtargetgroup-targetgroupidentifier */ readonly targetGroupIdentifier: string; /** * `CfnListener.WeightedTargetGroupProperty.Weight` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-listener-weightedtargetgroup.html#cfn-vpclattice-listener-weightedtargetgroup-weight */ readonly weight?: number; } } /** * Properties for defining a `CfnResourcePolicy` * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcepolicy.html */ export interface CfnResourcePolicyProps { /** * `AWS::VpcLattice::ResourcePolicy.Policy` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcepolicy.html#cfn-vpclattice-resourcepolicy-policy */ readonly policy: any | cdk.IResolvable; /** * `AWS::VpcLattice::ResourcePolicy.ResourceArn` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcepolicy.html#cfn-vpclattice-resourcepolicy-resourcearn */ readonly resourceArn: string; } /** * A CloudFormation `AWS::VpcLattice::ResourcePolicy` * * * * @cloudformationResource AWS::VpcLattice::ResourcePolicy * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcepolicy.html */ export declare class CfnResourcePolicy extends cdk.CfnResource implements cdk.IInspectable { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME = "AWS::VpcLattice::ResourcePolicy"; /** * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnResourcePolicy; /** * `AWS::VpcLattice::ResourcePolicy.Policy` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcepolicy.html#cfn-vpclattice-resourcepolicy-policy */ policy: any | cdk.IResolvable; /** * `AWS::VpcLattice::ResourcePolicy.ResourceArn` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcepolicy.html#cfn-vpclattice-resourcepolicy-resourcearn */ resourceArn: string; /** * Create a new `AWS::VpcLattice::ResourcePolicy`. * * @param scope - scope in which this resource is defined * @param id - scoped id of the resource * @param props - resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnResourcePolicyProps); /** * Examines the CloudFormation resource and discloses attributes. * * @param inspector - tree inspector to collect and process attributes * */ inspect(inspector: cdk.TreeInspector): void; protected get cfnProperties(): { [key: string]: any; }; protected renderProperties(props: { [key: string]: any; }): { [key: string]: any; }; } /** * Properties for defining a `CfnRule` * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html */ export interface CfnRuleProps { /** * `AWS::VpcLattice::Rule.Action` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-action */ readonly action: CfnRule.ActionProperty | cdk.IResolvable; /** * `AWS::VpcLattice::Rule.Match` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-match */ readonly match: CfnRule.MatchProperty | cdk.IResolvable; /** * `AWS::VpcLattice::Rule.Priority` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-priority */ readonly priority: number; /** * `AWS::VpcLattice::Rule.ListenerIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-listeneridentifier */ readonly listenerIdentifier?: string; /** * `AWS::VpcLattice::Rule.Name` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-name */ readonly name?: string; /** * `AWS::VpcLattice::Rule.ServiceIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-serviceidentifier */ readonly serviceIdentifier?: string; /** * `AWS::VpcLattice::Rule.Tags` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-tags */ readonly tags?: cdk.CfnTag[]; } /** * A CloudFormation `AWS::VpcLattice::Rule` * * * * @cloudformationResource AWS::VpcLattice::Rule * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html */ export declare class CfnRule extends cdk.CfnResource implements cdk.IInspectable { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME = "AWS::VpcLattice::Rule"; /** * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnRule; /** * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * * @cloudformationAttribute Id */ readonly attrId: string; /** * `AWS::VpcLattice::Rule.Action` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-action */ action: CfnRule.ActionProperty | cdk.IResolvable; /** * `AWS::VpcLattice::Rule.Match` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-match */ match: CfnRule.MatchProperty | cdk.IResolvable; /** * `AWS::VpcLattice::Rule.Priority` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-priority */ priority: number; /** * `AWS::VpcLattice::Rule.ListenerIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-listeneridentifier */ listenerIdentifier: string | undefined; /** * `AWS::VpcLattice::Rule.Name` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-name */ name: string | undefined; /** * `AWS::VpcLattice::Rule.ServiceIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-serviceidentifier */ serviceIdentifier: string | undefined; /** * `AWS::VpcLattice::Rule.Tags` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-rule.html#cfn-vpclattice-rule-tags */ readonly tags: cdk.TagManager; /** * Create a new `AWS::VpcLattice::Rule`. * * @param scope - scope in which this resource is defined * @param id - scoped id of the resource * @param props - resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnRuleProps); /** * Examines the CloudFormation resource and discloses attributes. * * @param inspector - tree inspector to collect and process attributes * */ inspect(inspector: cdk.TreeInspector): void; protected get cfnProperties(): { [key: string]: any; }; protected renderProperties(props: { [key: string]: any; }): { [key: string]: any; }; } export declare namespace CfnRule { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-action.html */ interface ActionProperty { /** * `CfnRule.ActionProperty.Forward` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-action.html#cfn-vpclattice-rule-action-forward */ readonly forward: CfnRule.ForwardProperty | cdk.IResolvable; } } export declare namespace CfnRule { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-forward.html */ interface ForwardProperty { /** * `CfnRule.ForwardProperty.TargetGroups` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-forward.html#cfn-vpclattice-rule-forward-targetgroups */ readonly targetGroups: Array<CfnRule.WeightedTargetGroupProperty | cdk.IResolvable> | cdk.IResolvable; } } export declare namespace CfnRule { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-headermatch.html */ interface HeaderMatchProperty { /** * `CfnRule.HeaderMatchProperty.CaseSensitive` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-headermatch.html#cfn-vpclattice-rule-headermatch-casesensitive */ readonly caseSensitive?: boolean | cdk.IResolvable; /** * `CfnRule.HeaderMatchProperty.Match` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-headermatch.html#cfn-vpclattice-rule-headermatch-match */ readonly match: CfnRule.HeaderMatchTypeProperty | cdk.IResolvable; /** * `CfnRule.HeaderMatchProperty.Name` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-headermatch.html#cfn-vpclattice-rule-headermatch-name */ readonly name: string; } } export declare namespace CfnRule { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-headermatchtype.html */ interface HeaderMatchTypeProperty { /** * `CfnRule.HeaderMatchTypeProperty.Contains` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-headermatchtype.html#cfn-vpclattice-rule-headermatchtype-contains */ readonly contains?: string; /** * `CfnRule.HeaderMatchTypeProperty.Exact` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-headermatchtype.html#cfn-vpclattice-rule-headermatchtype-exact */ readonly exact?: string; /** * `CfnRule.HeaderMatchTypeProperty.Prefix` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-headermatchtype.html#cfn-vpclattice-rule-headermatchtype-prefix */ readonly prefix?: string; } } export declare namespace CfnRule { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-httpmatch.html */ interface HttpMatchProperty { /** * `CfnRule.HttpMatchProperty.HeaderMatches` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-httpmatch.html#cfn-vpclattice-rule-httpmatch-headermatches */ readonly headerMatches?: Array<CfnRule.HeaderMatchProperty | cdk.IResolvable> | cdk.IResolvable; /** * `CfnRule.HttpMatchProperty.Method` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-httpmatch.html#cfn-vpclattice-rule-httpmatch-method */ readonly method?: string; /** * `CfnRule.HttpMatchProperty.PathMatch` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-httpmatch.html#cfn-vpclattice-rule-httpmatch-pathmatch */ readonly pathMatch?: CfnRule.PathMatchProperty | cdk.IResolvable; } } export declare namespace CfnRule { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-match.html */ interface MatchProperty { /** * `CfnRule.MatchProperty.HttpMatch` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-match.html#cfn-vpclattice-rule-match-httpmatch */ readonly httpMatch: CfnRule.HttpMatchProperty | cdk.IResolvable; } } export declare namespace CfnRule { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-pathmatch.html */ interface PathMatchProperty { /** * `CfnRule.PathMatchProperty.CaseSensitive` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-pathmatch.html#cfn-vpclattice-rule-pathmatch-casesensitive */ readonly caseSensitive?: boolean | cdk.IResolvable; /** * `CfnRule.PathMatchProperty.Match` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-pathmatch.html#cfn-vpclattice-rule-pathmatch-match */ readonly match: CfnRule.PathMatchTypeProperty | cdk.IResolvable; } } export declare namespace CfnRule { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-pathmatchtype.html */ interface PathMatchTypeProperty { /** * `CfnRule.PathMatchTypeProperty.Exact` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-pathmatchtype.html#cfn-vpclattice-rule-pathmatchtype-exact */ readonly exact?: string; /** * `CfnRule.PathMatchTypeProperty.Prefix` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-pathmatchtype.html#cfn-vpclattice-rule-pathmatchtype-prefix */ readonly prefix?: string; } } export declare namespace CfnRule { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-weightedtargetgroup.html */ interface WeightedTargetGroupProperty { /** * `CfnRule.WeightedTargetGroupProperty.TargetGroupIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-weightedtargetgroup.html#cfn-vpclattice-rule-weightedtargetgroup-targetgroupidentifier */ readonly targetGroupIdentifier: string; /** * `CfnRule.WeightedTargetGroupProperty.Weight` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-weightedtargetgroup.html#cfn-vpclattice-rule-weightedtargetgroup-weight */ readonly weight?: number; } } /** * Properties for defining a `CfnService` * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html */ export interface CfnServiceProps { /** * `AWS::VpcLattice::Service.AuthType` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-authtype */ readonly authType?: string; /** * `AWS::VpcLattice::Service.CertificateArn` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-certificatearn */ readonly certificateArn?: string; /** * `AWS::VpcLattice::Service.CustomDomainName` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-customdomainname */ readonly customDomainName?: string; /** * `AWS::VpcLattice::Service.DnsEntry` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-dnsentry */ readonly dnsEntry?: CfnService.DnsEntryProperty | cdk.IResolvable; /** * `AWS::VpcLattice::Service.Name` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-name */ readonly name?: string; /** * `AWS::VpcLattice::Service.Tags` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-tags */ readonly tags?: cdk.CfnTag[]; } /** * A CloudFormation `AWS::VpcLattice::Service` * * * * @cloudformationResource AWS::VpcLattice::Service * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html */ export declare class CfnService extends cdk.CfnResource implements cdk.IInspectable { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME = "AWS::VpcLattice::Service"; /** * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnService; /** * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * * @cloudformationAttribute CreatedAt */ readonly attrCreatedAt: string; /** * * @cloudformationAttribute DnsEntry.DomainName */ readonly attrDnsEntryDomainName: string; /** * * @cloudformationAttribute DnsEntry.HostedZoneId */ readonly attrDnsEntryHostedZoneId: string; /** * * @cloudformationAttribute Id */ readonly attrId: string; /** * * @cloudformationAttribute LastUpdatedAt */ readonly attrLastUpdatedAt: string; /** * * @cloudformationAttribute Status */ readonly attrStatus: string; /** * `AWS::VpcLattice::Service.AuthType` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-authtype */ authType: string | undefined; /** * `AWS::VpcLattice::Service.CertificateArn` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-certificatearn */ certificateArn: string | undefined; /** * `AWS::VpcLattice::Service.CustomDomainName` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-customdomainname */ customDomainName: string | undefined; /** * `AWS::VpcLattice::Service.DnsEntry` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-dnsentry */ dnsEntry: CfnService.DnsEntryProperty | cdk.IResolvable | undefined; /** * `AWS::VpcLattice::Service.Name` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-name */ name: string | undefined; /** * `AWS::VpcLattice::Service.Tags` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-tags */ readonly tags: cdk.TagManager; /** * Create a new `AWS::VpcLattice::Service`. * * @param scope - scope in which this resource is defined * @param id - scoped id of the resource * @param props - resource properties */ constructor(scope: constructs.Construct, id: string, props?: CfnServiceProps); /** * Examines the CloudFormation resource and discloses attributes. * * @param inspector - tree inspector to collect and process attributes * */ inspect(inspector: cdk.TreeInspector): void; protected get cfnProperties(): { [key: string]: any; }; protected renderProperties(props: { [key: string]: any; }): { [key: string]: any; }; } export declare namespace CfnService { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-service-dnsentry.html */ interface DnsEntryProperty { /** * `CfnService.DnsEntryProperty.DomainName` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-service-dnsentry.html#cfn-vpclattice-service-dnsentry-domainname */ readonly domainName?: string; /** * `CfnService.DnsEntryProperty.HostedZoneId` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-service-dnsentry.html#cfn-vpclattice-service-dnsentry-hostedzoneid */ readonly hostedZoneId?: string; } } /** * Properties for defining a `CfnServiceNetwork` * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetwork.html */ export interface CfnServiceNetworkProps { /** * `AWS::VpcLattice::ServiceNetwork.AuthType` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetwork.html#cfn-vpclattice-servicenetwork-authtype */ readonly authType?: string; /** * `AWS::VpcLattice::ServiceNetwork.Name` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetwork.html#cfn-vpclattice-servicenetwork-name */ readonly name?: string; /** * `AWS::VpcLattice::ServiceNetwork.Tags` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetwork.html#cfn-vpclattice-servicenetwork-tags */ readonly tags?: cdk.CfnTag[]; } /** * A CloudFormation `AWS::VpcLattice::ServiceNetwork` * * * * @cloudformationResource AWS::VpcLattice::ServiceNetwork * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetwork.html */ export declare class CfnServiceNetwork extends cdk.CfnResource implements cdk.IInspectable { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME = "AWS::VpcLattice::ServiceNetwork"; /** * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnServiceNetwork; /** * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * * @cloudformationAttribute CreatedAt */ readonly attrCreatedAt: string; /** * * @cloudformationAttribute Id */ readonly attrId: string; /** * * @cloudformationAttribute LastUpdatedAt */ readonly attrLastUpdatedAt: string; /** * `AWS::VpcLattice::ServiceNetwork.AuthType` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetwork.html#cfn-vpclattice-servicenetwork-authtype */ authType: string | undefined; /** * `AWS::VpcLattice::ServiceNetwork.Name` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetwork.html#cfn-vpclattice-servicenetwork-name */ name: string | undefined; /** * `AWS::VpcLattice::ServiceNetwork.Tags` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetwork.html#cfn-vpclattice-servicenetwork-tags */ readonly tags: cdk.TagManager; /** * Create a new `AWS::VpcLattice::ServiceNetwork`. * * @param scope - scope in which this resource is defined * @param id - scoped id of the resource * @param props - resource properties */ constructor(scope: constructs.Construct, id: string, props?: CfnServiceNetworkProps); /** * Examines the CloudFormation resource and discloses attributes. * * @param inspector - tree inspector to collect and process attributes * */ inspect(inspector: cdk.TreeInspector): void; protected get cfnProperties(): { [key: string]: any; }; protected renderProperties(props: { [key: string]: any; }): { [key: string]: any; }; } /** * Properties for defining a `CfnServiceNetworkServiceAssociation` * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html */ export interface CfnServiceNetworkServiceAssociationProps { /** * `AWS::VpcLattice::ServiceNetworkServiceAssociation.DnsEntry` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html#cfn-vpclattice-servicenetworkserviceassociation-dnsentry */ readonly dnsEntry?: CfnServiceNetworkServiceAssociation.DnsEntryProperty | cdk.IResolvable; /** * `AWS::VpcLattice::ServiceNetworkServiceAssociation.ServiceIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html#cfn-vpclattice-servicenetworkserviceassociation-serviceidentifier */ readonly serviceIdentifier?: string; /** * `AWS::VpcLattice::ServiceNetworkServiceAssociation.ServiceNetworkIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html#cfn-vpclattice-servicenetworkserviceassociation-servicenetworkidentifier */ readonly serviceNetworkIdentifier?: string; /** * `AWS::VpcLattice::ServiceNetworkServiceAssociation.Tags` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html#cfn-vpclattice-servicenetworkserviceassociation-tags */ readonly tags?: cdk.CfnTag[]; } /** * A CloudFormation `AWS::VpcLattice::ServiceNetworkServiceAssociation` * * * * @cloudformationResource AWS::VpcLattice::ServiceNetworkServiceAssociation * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html */ export declare class CfnServiceNetworkServiceAssociation extends cdk.CfnResource implements cdk.IInspectable { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME = "AWS::VpcLattice::ServiceNetworkServiceAssociation"; /** * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnServiceNetworkServiceAssociation; /** * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * * @cloudformationAttribute CreatedAt */ readonly attrCreatedAt: string; /** * * @cloudformationAttribute DnsEntry.DomainName */ readonly attrDnsEntryDomainName: string; /** * * @cloudformationAttribute DnsEntry.HostedZoneId */ readonly attrDnsEntryHostedZoneId: string; /** * * @cloudformationAttribute Id */ readonly attrId: string; /** * * @cloudformationAttribute ServiceArn */ readonly attrServiceArn: string; /** * * @cloudformationAttribute ServiceId */ readonly attrServiceId: string; /** * * @cloudformationAttribute ServiceName */ readonly attrServiceName: string; /** * * @cloudformationAttribute ServiceNetworkArn */ readonly attrServiceNetworkArn: string; /** * * @cloudformationAttribute ServiceNetworkId */ readonly attrServiceNetworkId: string; /** * * @cloudformationAttribute ServiceNetworkName */ readonly attrServiceNetworkName: string; /** * * @cloudformationAttribute Status */ readonly attrStatus: string; /** * `AWS::VpcLattice::ServiceNetworkServiceAssociation.DnsEntry` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html#cfn-vpclattice-servicenetworkserviceassociation-dnsentry */ dnsEntry: CfnServiceNetworkServiceAssociation.DnsEntryProperty | cdk.IResolvable | undefined; /** * `AWS::VpcLattice::ServiceNetworkServiceAssociation.ServiceIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html#cfn-vpclattice-servicenetworkserviceassociation-serviceidentifier */ serviceIdentifier: string | undefined; /** * `AWS::VpcLattice::ServiceNetworkServiceAssociation.ServiceNetworkIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html#cfn-vpclattice-servicenetworkserviceassociation-servicenetworkidentifier */ serviceNetworkIdentifier: string | undefined; /** * `AWS::VpcLattice::ServiceNetworkServiceAssociation.Tags` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html#cfn-vpclattice-servicenetworkserviceassociation-tags */ readonly tags: cdk.TagManager; /** * Create a new `AWS::VpcLattice::ServiceNetworkServiceAssociation`. * * @param scope - scope in which this resource is defined * @param id - scoped id of the resource * @param props - resource properties */ constructor(scope: constructs.Construct, id: string, props?: CfnServiceNetworkServiceAssociationProps); /** * Examines the CloudFormation resource and discloses attributes. * * @param inspector - tree inspector to collect and process attributes * */ inspect(inspector: cdk.TreeInspector): void; protected get cfnProperties(): { [key: string]: any; }; protected renderProperties(props: { [key: string]: any; }): { [key: string]: any; }; } export declare namespace CfnServiceNetworkServiceAssociation { /** * * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-servicenetworkserviceassociation-dnsentry.html */ interface DnsEntryProperty { /** * `CfnServiceNetworkServiceAssociation.DnsEntryProperty.DomainName` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-servicenetworkserviceassociation-dnsentry.html#cfn-vpclattice-servicenetworkserviceassociation-dnsentry-domainname */ readonly domainName?: string; /** * `CfnServiceNetworkServiceAssociation.DnsEntryProperty.HostedZoneId` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-servicenetworkserviceassociation-dnsentry.html#cfn-vpclattice-servicenetworkserviceassociation-dnsentry-hostedzoneid */ readonly hostedZoneId?: string; } } /** * Properties for defining a `CfnServiceNetworkVpcAssociation` * * @struct * @stability external * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkvpcassociation.html */ export interface CfnServiceNetworkVpcAssociationProps { /** * `AWS::VpcLattice::ServiceNetworkVpcAssociation.SecurityGroupIds` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkvpcassociation.html#cfn-vpclattice-servicenetworkvpcassociation-securitygroupids */ readonly securityGroupIds?: string[]; /** * `AWS::VpcLattice::ServiceNetworkVpcAssociation.ServiceNetworkIdentifier` * * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkvpcassociation.html#cfn-vpclattice-servicenetworkvpcassociation-servicenetworkidentifier */ re