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