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