UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

15 lines (14 loc) 504 B
"use strict"; // CloudFormation Resource AWS::S3::Bucket Object.defineProperty(exports, "__esModule", { value: true }); exports.Bucket_Type = void 0; const base_1 = require("../../base"); exports.Bucket_Type = 'AWS::S3::Bucket'; /** * Resource Type definition for AWS::S3::Bucket {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html} */ function Bucket(props) { return new base_1.CfnResource(exports.Bucket_Type, props); } exports.default = Bucket;