typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 571 B
JavaScript
;
// CloudFormation Resource AWS::Redshift::Cluster
Object.defineProperty(exports, "__esModule", { value: true });
exports.Cluster_Type = void 0;
const base_1 = require("../../base");
exports.Cluster_Type = 'AWS::Redshift::Cluster';
/**
* An example resource schema demonstrating some basic constructs and
* validation rules. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html}
*/
function Cluster(props) {
return new base_1.CfnResource(exports.Cluster_Type, props);
}
exports.default = Cluster;