Interface CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty.Jsii$Proxy
- Enclosing class:
- CfnUserPoolRiskConfigurationAttachment
@Stability(Stable)
public static interface CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty
extends software.amazon.jsii.JsiiSerializable
The type of the configuration to override the risk decision.
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.*; RiskExceptionConfigurationTypeProperty riskExceptionConfigurationTypeProperty = RiskExceptionConfigurationTypeProperty.builder() .blockedIpRangeList(List.of("blockedIpRangeList")) .skippedIpRangeList(List.of("skippedIpRangeList")) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Overrides the risk decision to always block the pre-authentication requests.Risk detection isn't performed on the IP addresses in this range list.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBlockedIpRangeList
Overrides the risk decision to always block the pre-authentication requests.The IP range is in CIDR notation, a compact representation of an IP address and its routing prefix.
-
getSkippedIpRangeList
Risk detection isn't performed on the IP addresses in this range list.The IP range is in CIDR notation.
-
builder
@Stability(Stable) static CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty.Builder builder()
-