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