@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
121 lines (120 loc) • 4.3 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 SqsParameters = /** @class */ (function () {
function SqsParameters(properties) {
Object.assign(this, properties);
}
return SqsParameters;
}());
exports.SqsParameters = SqsParameters;
var EcsParameters = /** @class */ (function () {
function EcsParameters(properties) {
Object.assign(this, properties);
}
return EcsParameters;
}());
exports.EcsParameters = EcsParameters;
var NetworkConfiguration = /** @class */ (function () {
function NetworkConfiguration(properties) {
Object.assign(this, properties);
}
return NetworkConfiguration;
}());
exports.NetworkConfiguration = NetworkConfiguration;
var RunCommandParameters = /** @class */ (function () {
function RunCommandParameters(properties) {
Object.assign(this, properties);
}
return RunCommandParameters;
}());
exports.RunCommandParameters = RunCommandParameters;
var BatchParameters = /** @class */ (function () {
function BatchParameters(properties) {
Object.assign(this, properties);
}
return BatchParameters;
}());
exports.BatchParameters = BatchParameters;
var InputTransformer = /** @class */ (function () {
function InputTransformer(properties) {
Object.assign(this, properties);
}
return InputTransformer;
}());
exports.InputTransformer = InputTransformer;
var RunCommandTarget = /** @class */ (function () {
function RunCommandTarget(properties) {
Object.assign(this, properties);
}
return RunCommandTarget;
}());
exports.RunCommandTarget = RunCommandTarget;
var Target = /** @class */ (function () {
function Target(properties) {
Object.assign(this, properties);
}
return Target;
}());
exports.Target = Target;
var BatchArrayProperties = /** @class */ (function () {
function BatchArrayProperties(properties) {
Object.assign(this, properties);
}
return BatchArrayProperties;
}());
exports.BatchArrayProperties = BatchArrayProperties;
var AwsVpcConfiguration = /** @class */ (function () {
function AwsVpcConfiguration(properties) {
Object.assign(this, properties);
}
return AwsVpcConfiguration;
}());
exports.AwsVpcConfiguration = AwsVpcConfiguration;
var KinesisParameters = /** @class */ (function () {
function KinesisParameters(properties) {
Object.assign(this, properties);
}
return KinesisParameters;
}());
exports.KinesisParameters = KinesisParameters;
var BatchRetryStrategy = /** @class */ (function () {
function BatchRetryStrategy(properties) {
Object.assign(this, properties);
}
return BatchRetryStrategy;
}());
exports.BatchRetryStrategy = BatchRetryStrategy;
var Inner_Rule = /** @class */ (function (_super) {
__extends(Inner_Rule, _super);
function Inner_Rule(properties) {
return _super.call(this, "AWS::Events::Rule", properties) || this;
}
Inner_Rule.SqsParameters = SqsParameters;
Inner_Rule.EcsParameters = EcsParameters;
Inner_Rule.NetworkConfiguration = NetworkConfiguration;
Inner_Rule.RunCommandParameters = RunCommandParameters;
Inner_Rule.BatchParameters = BatchParameters;
Inner_Rule.InputTransformer = InputTransformer;
Inner_Rule.RunCommandTarget = RunCommandTarget;
Inner_Rule.Target = Target;
Inner_Rule.BatchArrayProperties = BatchArrayProperties;
Inner_Rule.AwsVpcConfiguration = AwsVpcConfiguration;
Inner_Rule.KinesisParameters = KinesisParameters;
Inner_Rule.BatchRetryStrategy = BatchRetryStrategy;
return Inner_Rule;
}(resource_1.ResourceBase));
exports.default = Inner_Rule;