typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 636 B
JavaScript
;
// CloudFormation Resource AWS::CloudFormation::ResourceVersion
Object.defineProperty(exports, "__esModule", { value: true });
exports.ResourceVersion_Type = void 0;
const base_1 = require("../../base");
exports.ResourceVersion_Type = 'AWS::CloudFormation::ResourceVersion';
/**
* A resource that has been registered in the CloudFormation Registry.
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-resourceversion.html}
*/
function ResourceVersion(props) {
return new base_1.CfnResource(exports.ResourceVersion_Type, props);
}
exports.default = ResourceVersion;