UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

89 lines (88 loc) 3.98 kB
"use strict"; 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 NotificationConfig = /** @class */ (function () { function NotificationConfig(properties) { Object.assign(this, properties); } return NotificationConfig; }()); exports.NotificationConfig = NotificationConfig; var Target = /** @class */ (function () { function Target(properties) { Object.assign(this, properties); } return Target; }()); exports.Target = Target; var MaintenanceWindowStepFunctionsParameters = /** @class */ (function () { function MaintenanceWindowStepFunctionsParameters(properties) { Object.assign(this, properties); } return MaintenanceWindowStepFunctionsParameters; }()); exports.MaintenanceWindowStepFunctionsParameters = MaintenanceWindowStepFunctionsParameters; var MaintenanceWindowAutomationParameters = /** @class */ (function () { function MaintenanceWindowAutomationParameters(properties) { Object.assign(this, properties); } return MaintenanceWindowAutomationParameters; }()); exports.MaintenanceWindowAutomationParameters = MaintenanceWindowAutomationParameters; var TaskInvocationParameters = /** @class */ (function () { function TaskInvocationParameters(properties) { Object.assign(this, properties); } return TaskInvocationParameters; }()); exports.TaskInvocationParameters = TaskInvocationParameters; var LoggingInfo = /** @class */ (function () { function LoggingInfo(properties) { Object.assign(this, properties); } return LoggingInfo; }()); exports.LoggingInfo = LoggingInfo; var MaintenanceWindowRunCommandParameters = /** @class */ (function () { function MaintenanceWindowRunCommandParameters(properties) { Object.assign(this, properties); } return MaintenanceWindowRunCommandParameters; }()); exports.MaintenanceWindowRunCommandParameters = MaintenanceWindowRunCommandParameters; var MaintenanceWindowLambdaParameters = /** @class */ (function () { function MaintenanceWindowLambdaParameters(properties) { Object.assign(this, properties); } return MaintenanceWindowLambdaParameters; }()); exports.MaintenanceWindowLambdaParameters = MaintenanceWindowLambdaParameters; var Inner_MaintenanceWindowTask = /** @class */ (function (_super) { __extends(Inner_MaintenanceWindowTask, _super); function Inner_MaintenanceWindowTask(properties) { return _super.call(this, "AWS::SSM::MaintenanceWindowTask", properties) || this; } Inner_MaintenanceWindowTask.NotificationConfig = NotificationConfig; Inner_MaintenanceWindowTask.Target = Target; Inner_MaintenanceWindowTask.MaintenanceWindowStepFunctionsParameters = MaintenanceWindowStepFunctionsParameters; Inner_MaintenanceWindowTask.MaintenanceWindowAutomationParameters = MaintenanceWindowAutomationParameters; Inner_MaintenanceWindowTask.TaskInvocationParameters = TaskInvocationParameters; Inner_MaintenanceWindowTask.LoggingInfo = LoggingInfo; Inner_MaintenanceWindowTask.MaintenanceWindowRunCommandParameters = MaintenanceWindowRunCommandParameters; Inner_MaintenanceWindowTask.MaintenanceWindowLambdaParameters = MaintenanceWindowLambdaParameters; return Inner_MaintenanceWindowTask; }(resource_1.ResourceBase)); exports.default = Inner_MaintenanceWindowTask;