@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
65 lines (64 loc) • 2.5 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 KinesisStreamsOutput = /** @class */ (function () {
function KinesisStreamsOutput(properties) {
Object.assign(this, properties);
}
return KinesisStreamsOutput;
}());
exports.KinesisStreamsOutput = KinesisStreamsOutput;
var KinesisFirehoseOutput = /** @class */ (function () {
function KinesisFirehoseOutput(properties) {
Object.assign(this, properties);
}
return KinesisFirehoseOutput;
}());
exports.KinesisFirehoseOutput = KinesisFirehoseOutput;
var Output = /** @class */ (function () {
function Output(properties) {
Object.assign(this, properties);
}
return Output;
}());
exports.Output = Output;
var DestinationSchema = /** @class */ (function () {
function DestinationSchema(properties) {
Object.assign(this, properties);
}
return DestinationSchema;
}());
exports.DestinationSchema = DestinationSchema;
var LambdaOutput = /** @class */ (function () {
function LambdaOutput(properties) {
Object.assign(this, properties);
}
return LambdaOutput;
}());
exports.LambdaOutput = LambdaOutput;
var Inner_ApplicationOutput = /** @class */ (function (_super) {
__extends(Inner_ApplicationOutput, _super);
function Inner_ApplicationOutput(properties) {
return _super.call(this, "AWS::KinesisAnalyticsV2::ApplicationOutput", properties) || this;
}
Inner_ApplicationOutput.KinesisStreamsOutput = KinesisStreamsOutput;
Inner_ApplicationOutput.KinesisFirehoseOutput = KinesisFirehoseOutput;
Inner_ApplicationOutput.Output = Output;
Inner_ApplicationOutput.DestinationSchema = DestinationSchema;
Inner_ApplicationOutput.LambdaOutput = LambdaOutput;
return Inner_ApplicationOutput;
}(resource_1.ResourceBase));
exports.default = Inner_ApplicationOutput;