@Stability(value=Stable)
public static interface CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty
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.*;
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty.Builder
|
static class |
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty.Jsii$Proxy
An implementation for
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty.Builder |
builder() |
default Object |
getHighAction()
Action to take for a high risk.
|
default Object |
getLowAction()
Action to take for a low risk.
|
default Object |
getMediumAction()
Action to take for a medium risk.
|
@Stability(value=Stable) @Nullable default Object getHighAction()
@Stability(value=Stable) @Nullable default Object getLowAction()
@Stability(value=Stable) @Nullable default Object getMediumAction()
@Stability(value=Stable) static CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty.Builder builder()
Copyright © 2022. All rights reserved.