typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
18 lines (17 loc) • 856 B
JavaScript
;
// CloudFormation Resource AWS::EC2::GatewayRouteTableAssociation
Object.defineProperty(exports, "__esModule", { value: true });
exports.GatewayRouteTableAssociation_Type = void 0;
const base_1 = require("../../base");
exports.GatewayRouteTableAssociation_Type = 'AWS::EC2::GatewayRouteTableAssociation';
/**
* Associates a gateway with a route table. The gateway and route table
* must be in the same VPC. This association causes the incoming traffic
* to the gateway to be routed according to the routes in the route
* table. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html}
*/
function GatewayRouteTableAssociation(props) {
return new base_1.CfnResource(exports.GatewayRouteTableAssociation_Type, props);
}
exports.default = GatewayRouteTableAssociation;