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