typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 775 B
JavaScript
;
// CloudFormation Resource AWS::EC2::LocalGatewayRouteTableVPCAssociation
Object.defineProperty(exports, "__esModule", { value: true });
exports.LocalGatewayRouteTableVPCAssociation_Type = void 0;
const base_1 = require("../../base");
exports.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}
*/
function LocalGatewayRouteTableVPCAssociation(props) {
return new base_1.CfnResource(exports.LocalGatewayRouteTableVPCAssociation_Type, props);
}
exports.default = LocalGatewayRouteTableVPCAssociation;