@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
81 lines (80 loc) • 2.74 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var resource_1 = require("../../resource");
var Subscriber = /** @class */ (function () {
function Subscriber(properties) {
Object.assign(this, properties);
}
return Subscriber;
}());
exports.Subscriber = Subscriber;
var NotificationWithSubscribers = /** @class */ (function () {
function NotificationWithSubscribers(properties) {
Object.assign(this, properties);
}
return NotificationWithSubscribers;
}());
exports.NotificationWithSubscribers = NotificationWithSubscribers;
var Notification = /** @class */ (function () {
function Notification(properties) {
Object.assign(this, properties);
}
return Notification;
}());
exports.Notification = Notification;
var TimePeriod = /** @class */ (function () {
function TimePeriod(properties) {
Object.assign(this, properties);
}
return TimePeriod;
}());
exports.TimePeriod = TimePeriod;
var Spend = /** @class */ (function () {
function Spend(properties) {
Object.assign(this, properties);
}
return Spend;
}());
exports.Spend = Spend;
var BudgetData = /** @class */ (function () {
function BudgetData(properties) {
Object.assign(this, properties);
}
return BudgetData;
}());
exports.BudgetData = BudgetData;
var CostTypes = /** @class */ (function () {
function CostTypes(properties) {
Object.assign(this, properties);
}
return CostTypes;
}());
exports.CostTypes = CostTypes;
var Inner_Budget = /** @class */ (function (_super) {
__extends(Inner_Budget, _super);
function Inner_Budget(properties) {
return _super.call(this, "AWS::Budgets::Budget", properties) || this;
}
Inner_Budget.Subscriber = Subscriber;
Inner_Budget.NotificationWithSubscribers = NotificationWithSubscribers;
Inner_Budget.Notification = Notification;
Inner_Budget.TimePeriod = TimePeriod;
Inner_Budget.Spend = Spend;
Inner_Budget.BudgetData = BudgetData;
Inner_Budget.CostTypes = CostTypes;
return Inner_Budget;
}(resource_1.ResourceBase));
exports.default = Inner_Budget;