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