@Stability(value=Stable)
public static interface CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionTypeProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cognito.*;
AccountTakeoverActionTypeProperty accountTakeoverActionTypeProperty = AccountTakeoverActionTypeProperty.builder()
.eventAction("eventAction")
.notify(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionTypeProperty.Builder
|
static class |
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionTypeProperty.Jsii$Proxy
An implementation for
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionTypeProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionTypeProperty.Builder |
builder() |
String |
getEventAction()
The action to take in response to the account takeover action.
|
Object |
getNotify()
Flag specifying whether to send a notification.
|
@Stability(value=Stable) @NotNull String getEventAction()
BLOCK Choosing this action will block the request.MFA_IF_CONFIGURED Present an MFA challenge if user has configured it, else allow the request.MFA_REQUIRED Present an MFA challenge if user has configured it, else block the request.NO_ACTION Allow the user to sign in.@Stability(value=Stable) @NotNull Object getNotify()
@Stability(value=Stable) static CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionTypeProperty.Builder builder()
Copyright © 2022. All rights reserved.