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