@Stability(value=Stable)
public static interface CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty
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.*;
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 List<String> |
getBlockedIpRangeList()
Overrides the risk decision to always block the pre-authentication requests.
|
default List<String> |
getSkippedIpRangeList()
Risk detection isn't performed on the IP addresses in this range list.
|
@Stability(value=Stable) @Nullable default List<String> getBlockedIpRangeList()
The IP range is in CIDR notation, a compact representation of an IP address and its routing prefix.
@Stability(value=Stable) @Nullable default List<String> getSkippedIpRangeList()
The IP range is in CIDR notation.
@Stability(value=Stable) static CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty.Builder builder()
Copyright © 2022. All rights reserved.