@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
57 lines (56 loc) • 2.24 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 EndpointDetails = /** @class */ (function () {
function EndpointDetails(properties) {
Object.assign(this, properties);
}
return EndpointDetails;
}());
exports.EndpointDetails = EndpointDetails;
var SocketAddress = /** @class */ (function () {
function SocketAddress(properties) {
Object.assign(this, properties);
}
return SocketAddress;
}());
exports.SocketAddress = SocketAddress;
var SecurityDetails = /** @class */ (function () {
function SecurityDetails(properties) {
Object.assign(this, properties);
}
return SecurityDetails;
}());
exports.SecurityDetails = SecurityDetails;
var DataflowEndpoint = /** @class */ (function () {
function DataflowEndpoint(properties) {
Object.assign(this, properties);
}
return DataflowEndpoint;
}());
exports.DataflowEndpoint = DataflowEndpoint;
var Inner_DataflowEndpointGroup = /** @class */ (function (_super) {
__extends(Inner_DataflowEndpointGroup, _super);
function Inner_DataflowEndpointGroup(properties) {
return _super.call(this, "AWS::GroundStation::DataflowEndpointGroup", properties) || this;
}
Inner_DataflowEndpointGroup.EndpointDetails = EndpointDetails;
Inner_DataflowEndpointGroup.SocketAddress = SocketAddress;
Inner_DataflowEndpointGroup.SecurityDetails = SecurityDetails;
Inner_DataflowEndpointGroup.DataflowEndpoint = DataflowEndpoint;
return Inner_DataflowEndpointGroup;
}(resource_1.ResourceBase));
exports.default = Inner_DataflowEndpointGroup;