public static interface CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty.Builder
|
static class |
CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty.Jsii$Proxy
An implementation for
CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty |
Modifier and Type | Method and Description |
---|---|
static CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty.Builder |
builder() |
default java.util.List<java.lang.String> |
getBlockedIpRangeList()
Overrides the risk decision to always block the pre-authentication requests.
|
default java.util.List<java.lang.String> |
getSkippedIpRangeList()
Risk detection isn't performed on the IP addresses in this range list.
|
default java.util.List<java.lang.String> getBlockedIpRangeList()
The IP range is in CIDR notation, a compact representation of an IP address and its routing prefix.
default java.util.List<java.lang.String> getSkippedIpRangeList()
The IP range is in CIDR notation.