typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 680 B
JavaScript
;
// CloudFormation Resource AWS::EC2::EgressOnlyInternetGateway
Object.defineProperty(exports, "__esModule", { value: true });
exports.EgressOnlyInternetGateway_Type = void 0;
const base_1 = require("../../base");
exports.EgressOnlyInternetGateway_Type = 'AWS::EC2::EgressOnlyInternetGateway';
/**
* Resource Type definition for AWS::EC2::EgressOnlyInternetGateway
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html}
*/
function EgressOnlyInternetGateway(props) {
return new base_1.CfnResource(exports.EgressOnlyInternetGateway_Type, props);
}
exports.default = EgressOnlyInternetGateway;