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
Exceptions to the risk evaluation configuration, including always-allow and always-block IP address ranges.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
An always-block IP address list.An always-allow IP address list.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBlockedIpRangeList
An always-block IP address list.Overrides the risk decision and always blocks authentication requests. This parameter is displayed and set in CIDR notation.
- See Also:
-
getSkippedIpRangeList
An always-allow IP address list.Risk detection isn't performed on the IP addresses in this range list. This parameter is displayed and set in CIDR notation.
- See Also:
-
builder
@Stability(Stable) static CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty.Builder builder()
-