@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
65 lines (64 loc) • 2.87 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 ClientAuthenticationRequest = /** @class */ (function () {
function ClientAuthenticationRequest(properties) {
Object.assign(this, properties);
}
return ClientAuthenticationRequest;
}());
exports.ClientAuthenticationRequest = ClientAuthenticationRequest;
var CertificateAuthenticationRequest = /** @class */ (function () {
function CertificateAuthenticationRequest(properties) {
Object.assign(this, properties);
}
return CertificateAuthenticationRequest;
}());
exports.CertificateAuthenticationRequest = CertificateAuthenticationRequest;
var DirectoryServiceAuthenticationRequest = /** @class */ (function () {
function DirectoryServiceAuthenticationRequest(properties) {
Object.assign(this, properties);
}
return DirectoryServiceAuthenticationRequest;
}());
exports.DirectoryServiceAuthenticationRequest = DirectoryServiceAuthenticationRequest;
var TagSpecification = /** @class */ (function () {
function TagSpecification(properties) {
Object.assign(this, properties);
}
return TagSpecification;
}());
exports.TagSpecification = TagSpecification;
var ConnectionLogOptions = /** @class */ (function () {
function ConnectionLogOptions(properties) {
Object.assign(this, properties);
}
return ConnectionLogOptions;
}());
exports.ConnectionLogOptions = ConnectionLogOptions;
var Inner_ClientVpnEndpoint = /** @class */ (function (_super) {
__extends(Inner_ClientVpnEndpoint, _super);
function Inner_ClientVpnEndpoint(properties) {
return _super.call(this, "AWS::EC2::ClientVpnEndpoint", properties) || this;
}
Inner_ClientVpnEndpoint.ClientAuthenticationRequest = ClientAuthenticationRequest;
Inner_ClientVpnEndpoint.CertificateAuthenticationRequest = CertificateAuthenticationRequest;
Inner_ClientVpnEndpoint.DirectoryServiceAuthenticationRequest = DirectoryServiceAuthenticationRequest;
Inner_ClientVpnEndpoint.TagSpecification = TagSpecification;
Inner_ClientVpnEndpoint.ConnectionLogOptions = ConnectionLogOptions;
return Inner_ClientVpnEndpoint;
}(resource_1.ResourceBase));
exports.default = Inner_ClientVpnEndpoint;