typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
40 lines (39 loc) • 1.99 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type LocalGatewayRouteTableVPCAssociation_Type = 'AWS::EC2::LocalGatewayRouteTableVPCAssociation';
export declare const LocalGatewayRouteTableVPCAssociation_Type = "AWS::EC2::LocalGatewayRouteTableVPCAssociation";
/**
* Describes an association between a local gateway route table and a
* VPC. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html}
*/
export default function LocalGatewayRouteTableVPCAssociation(props: LocalGatewayRouteTableVPCAssociation_Properties): CfnResource<LocalGatewayRouteTableVPCAssociation_Properties>;
/**
* Describes an association between a local gateway route table and a
* VPC. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html}
*/
export declare type LocalGatewayRouteTableVPCAssociation_Properties = {
LocalGatewayId?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid}
*/
LocalGatewayRouteTableId: Resolvable<string>;
LocalGatewayRouteTableVpcAssociationId?: Resolvable<string>;
State?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid}
*/
VpcId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-tags}
*/
Tags?: Tags;
};
export declare type Tags = Tag[];
export declare type Tag = {
Key?: Resolvable<string>;
Value?: Resolvable<string>;
};