@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
89 lines (88 loc) • 4.35 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 CompromisedCredentialsActionsType = /** @class */ (function () {
function CompromisedCredentialsActionsType(properties) {
Object.assign(this, properties);
}
return CompromisedCredentialsActionsType;
}());
exports.CompromisedCredentialsActionsType = CompromisedCredentialsActionsType;
var NotifyConfigurationType = /** @class */ (function () {
function NotifyConfigurationType(properties) {
Object.assign(this, properties);
}
return NotifyConfigurationType;
}());
exports.NotifyConfigurationType = NotifyConfigurationType;
var NotifyEmailType = /** @class */ (function () {
function NotifyEmailType(properties) {
Object.assign(this, properties);
}
return NotifyEmailType;
}());
exports.NotifyEmailType = NotifyEmailType;
var AccountTakeoverActionsType = /** @class */ (function () {
function AccountTakeoverActionsType(properties) {
Object.assign(this, properties);
}
return AccountTakeoverActionsType;
}());
exports.AccountTakeoverActionsType = AccountTakeoverActionsType;
var RiskExceptionConfigurationType = /** @class */ (function () {
function RiskExceptionConfigurationType(properties) {
Object.assign(this, properties);
}
return RiskExceptionConfigurationType;
}());
exports.RiskExceptionConfigurationType = RiskExceptionConfigurationType;
var CompromisedCredentialsRiskConfigurationType = /** @class */ (function () {
function CompromisedCredentialsRiskConfigurationType(properties) {
Object.assign(this, properties);
}
return CompromisedCredentialsRiskConfigurationType;
}());
exports.CompromisedCredentialsRiskConfigurationType = CompromisedCredentialsRiskConfigurationType;
var AccountTakeoverRiskConfigurationType = /** @class */ (function () {
function AccountTakeoverRiskConfigurationType(properties) {
Object.assign(this, properties);
}
return AccountTakeoverRiskConfigurationType;
}());
exports.AccountTakeoverRiskConfigurationType = AccountTakeoverRiskConfigurationType;
var AccountTakeoverActionType = /** @class */ (function () {
function AccountTakeoverActionType(properties) {
Object.assign(this, properties);
}
return AccountTakeoverActionType;
}());
exports.AccountTakeoverActionType = AccountTakeoverActionType;
var Inner_UserPoolRiskConfigurationAttachment = /** @class */ (function (_super) {
__extends(Inner_UserPoolRiskConfigurationAttachment, _super);
function Inner_UserPoolRiskConfigurationAttachment(properties) {
return _super.call(this, "AWS::Cognito::UserPoolRiskConfigurationAttachment", properties) || this;
}
Inner_UserPoolRiskConfigurationAttachment.CompromisedCredentialsActionsType = CompromisedCredentialsActionsType;
Inner_UserPoolRiskConfigurationAttachment.NotifyConfigurationType = NotifyConfigurationType;
Inner_UserPoolRiskConfigurationAttachment.NotifyEmailType = NotifyEmailType;
Inner_UserPoolRiskConfigurationAttachment.AccountTakeoverActionsType = AccountTakeoverActionsType;
Inner_UserPoolRiskConfigurationAttachment.RiskExceptionConfigurationType = RiskExceptionConfigurationType;
Inner_UserPoolRiskConfigurationAttachment.CompromisedCredentialsRiskConfigurationType = CompromisedCredentialsRiskConfigurationType;
Inner_UserPoolRiskConfigurationAttachment.AccountTakeoverRiskConfigurationType = AccountTakeoverRiskConfigurationType;
Inner_UserPoolRiskConfigurationAttachment.AccountTakeoverActionType = AccountTakeoverActionType;
return Inner_UserPoolRiskConfigurationAttachment;
}(resource_1.ResourceBase));
exports.default = Inner_UserPoolRiskConfigurationAttachment;