Interface CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty.Jsii$Proxy
- Enclosing class:
CfnUserPoolRiskConfigurationAttachment
@Stability(Stable)
public static interface CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty
extends software.amazon.jsii.JsiiSerializable
A list of account-takeover actions for each level of risk that Amazon Cognito might assess with advanced security features.
This data type is a request parameter of SetRiskConfiguration and a response parameter of DescribeRiskConfiguration .
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.*; AccountTakeoverActionsTypeProperty accountTakeoverActionsTypeProperty = AccountTakeoverActionsTypeProperty.builder() .highAction(AccountTakeoverActionTypeProperty.builder() .eventAction("eventAction") .notify(false) .build()) .lowAction(AccountTakeoverActionTypeProperty.builder() .eventAction("eventAction") .notify(false) .build()) .mediumAction(AccountTakeoverActionTypeProperty.builder() .eventAction("eventAction") .notify(false) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The action that you assign to a high-risk assessment by advanced security features.default Object
The action that you assign to a low-risk assessment by advanced security features.default Object
The action that you assign to a medium-risk assessment by advanced security features.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHighAction
The action that you assign to a high-risk assessment by advanced security features.- See Also:
-
getLowAction
The action that you assign to a low-risk assessment by advanced security features.- See Also:
-
getMediumAction
The action that you assign to a medium-risk assessment by advanced security features.- See Also:
-
builder
@Stability(Stable) static CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty.Builder builder()
-