@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
73 lines (72 loc) • 2.54 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 Rule = /** @class */ (function () {
function Rule(properties) {
Object.assign(this, properties);
}
return Rule;
}());
exports.Rule = Rule;
var PatchFilter = /** @class */ (function () {
function PatchFilter(properties) {
Object.assign(this, properties);
}
return PatchFilter;
}());
exports.PatchFilter = PatchFilter;
var PatchFilterGroup = /** @class */ (function () {
function PatchFilterGroup(properties) {
Object.assign(this, properties);
}
return PatchFilterGroup;
}());
exports.PatchFilterGroup = PatchFilterGroup;
var PatchSource = /** @class */ (function () {
function PatchSource(properties) {
Object.assign(this, properties);
}
return PatchSource;
}());
exports.PatchSource = PatchSource;
var RuleGroup = /** @class */ (function () {
function RuleGroup(properties) {
Object.assign(this, properties);
}
return RuleGroup;
}());
exports.RuleGroup = RuleGroup;
var PatchStringDate = /** @class */ (function () {
function PatchStringDate(properties) {
Object.assign(this, properties);
}
return PatchStringDate;
}());
exports.PatchStringDate = PatchStringDate;
var Inner_PatchBaseline = /** @class */ (function (_super) {
__extends(Inner_PatchBaseline, _super);
function Inner_PatchBaseline(properties) {
return _super.call(this, "AWS::SSM::PatchBaseline", properties) || this;
}
Inner_PatchBaseline.Rule = Rule;
Inner_PatchBaseline.PatchFilter = PatchFilter;
Inner_PatchBaseline.PatchFilterGroup = PatchFilterGroup;
Inner_PatchBaseline.PatchSource = PatchSource;
Inner_PatchBaseline.RuleGroup = RuleGroup;
Inner_PatchBaseline.PatchStringDate = PatchStringDate;
return Inner_PatchBaseline;
}(resource_1.ResourceBase));
exports.default = Inner_PatchBaseline;