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