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