@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
57 lines (56 loc) • 2.06 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 HostedZoneConfig = /** @class */ (function () {
function HostedZoneConfig(properties) {
Object.assign(this, properties);
}
return HostedZoneConfig;
}());
exports.HostedZoneConfig = HostedZoneConfig;
var QueryLoggingConfig = /** @class */ (function () {
function QueryLoggingConfig(properties) {
Object.assign(this, properties);
}
return QueryLoggingConfig;
}());
exports.QueryLoggingConfig = QueryLoggingConfig;
var HostedZoneTag = /** @class */ (function () {
function HostedZoneTag(properties) {
Object.assign(this, properties);
}
return HostedZoneTag;
}());
exports.HostedZoneTag = HostedZoneTag;
var VPC = /** @class */ (function () {
function VPC(properties) {
Object.assign(this, properties);
}
return VPC;
}());
exports.VPC = VPC;
var Inner_HostedZone = /** @class */ (function (_super) {
__extends(Inner_HostedZone, _super);
function Inner_HostedZone(properties) {
return _super.call(this, "AWS::Route53::HostedZone", properties) || this;
}
Inner_HostedZone.HostedZoneConfig = HostedZoneConfig;
Inner_HostedZone.QueryLoggingConfig = QueryLoggingConfig;
Inner_HostedZone.HostedZoneTag = HostedZoneTag;
Inner_HostedZone.VPC = VPC;
return Inner_HostedZone;
}(resource_1.ResourceBase));
exports.default = Inner_HostedZone;