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