typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 573 B
JavaScript
;
// CloudFormation Resource AWS::LicenseManager::Grant
Object.defineProperty(exports, "__esModule", { value: true });
exports.Grant_Type = void 0;
const base_1 = require("../../base");
exports.Grant_Type = 'AWS::LicenseManager::Grant';
/**
* An example resource schema demonstrating some basic constructs and
* validation rules. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-grant.html}
*/
function Grant(props) {
return new base_1.CfnResource(exports.Grant_Type, props);
}
exports.default = Grant;