typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
15 lines (14 loc) • 636 B
JavaScript
;
// CloudFormation Resource AWS::ApiGateway::DocumentationVersion
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocumentationVersion_Type = void 0;
const base_1 = require("../../base");
exports.DocumentationVersion_Type = 'AWS::ApiGateway::DocumentationVersion';
/**
* A snapshot of the documentation of an API. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html}
*/
function DocumentationVersion(props) {
return new base_1.CfnResource(exports.DocumentationVersion_Type, props);
}
exports.default = DocumentationVersion;