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.
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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe action that you assign to a high-risk assessment by threat protection.default ObjectThe action that you assign to a low-risk assessment by threat protection.default ObjectThe action that you assign to a medium-risk assessment by threat protection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHighAction
The action that you assign to a high-risk assessment by threat protection.- See Also:
-
getLowAction
The action that you assign to a low-risk assessment by threat protection.- See Also:
-
getMediumAction
The action that you assign to a medium-risk assessment by threat protection.- See Also:
-
builder
@Stability(Stable) static CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty.Builder builder()
-