typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 570 B
JavaScript
;
// CloudFormation Resource AWS::Glue::Registry
Object.defineProperty(exports, "__esModule", { value: true });
exports.Registry_Type = void 0;
const base_1 = require("../../base");
exports.Registry_Type = 'AWS::Glue::Registry';
/**
* This resource creates a Registry for authoring schemas as part of Glue
* Schema Registry. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-registry.html}
*/
function Registry(props) {
return new base_1.CfnResource(exports.Registry_Type, props);
}
exports.default = Registry;