public static interface CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionTypeProperty
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() |
java.lang.String |
getEventAction()
The action to take in response to the account takeover action.
|
java.lang.Object |
getNotify()
Flag specifying whether to send a notification.
|
java.lang.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.java.lang.Object getNotify()