typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
11 lines (10 loc) • 396 B
JavaScript
;
// CloudFormation Resource AWS::RDS::GlobalCluster
Object.defineProperty(exports, "__esModule", { value: true });
exports.GlobalCluster_Type = void 0;
const base_1 = require("../../base");
exports.GlobalCluster_Type = 'AWS::RDS::GlobalCluster';
function GlobalCluster(props) {
return new base_1.CfnResource(exports.GlobalCluster_Type, props);
}
exports.default = GlobalCluster;