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