@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
57 lines (56 loc) • 2.09 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 DnsRecord = /** @class */ (function () {
function DnsRecord(properties) {
Object.assign(this, properties);
}
return DnsRecord;
}());
exports.DnsRecord = DnsRecord;
var HealthCheckCustomConfig = /** @class */ (function () {
function HealthCheckCustomConfig(properties) {
Object.assign(this, properties);
}
return HealthCheckCustomConfig;
}());
exports.HealthCheckCustomConfig = HealthCheckCustomConfig;
var DnsConfig = /** @class */ (function () {
function DnsConfig(properties) {
Object.assign(this, properties);
}
return DnsConfig;
}());
exports.DnsConfig = DnsConfig;
var HealthCheckConfig = /** @class */ (function () {
function HealthCheckConfig(properties) {
Object.assign(this, properties);
}
return HealthCheckConfig;
}());
exports.HealthCheckConfig = HealthCheckConfig;
var Inner_Service = /** @class */ (function (_super) {
__extends(Inner_Service, _super);
function Inner_Service(properties) {
return _super.call(this, "AWS::ServiceDiscovery::Service", properties) || this;
}
Inner_Service.DnsRecord = DnsRecord;
Inner_Service.HealthCheckCustomConfig = HealthCheckCustomConfig;
Inner_Service.DnsConfig = DnsConfig;
Inner_Service.HealthCheckConfig = HealthCheckConfig;
return Inner_Service;
}(resource_1.ResourceBase));
exports.default = Inner_Service;