Class: Aws::CognitoIdentityProvider::Types::RiskExceptionConfigurationType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::RiskExceptionConfigurationType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
The type of the configuration to override the risk decision.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#blocked_ip_range_list ⇒ Array<String>
Overrides the risk decision to always block the pre-authentication requests.
-
#skipped_ip_range_list ⇒ Array<String>
Risk detection isn’t performed on the IP addresses in this range list.
Instance Attribute Details
#blocked_ip_range_list ⇒ Array<String>
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.
7630 7631 7632 7633 7634 7635 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7630 class RiskExceptionConfigurationType < Struct.new( :blocked_ip_range_list, :skipped_ip_range_list) SENSITIVE = [] include Aws::Structure end |
#skipped_ip_range_list ⇒ Array<String>
Risk detection isn’t performed on the IP addresses in this range list. The IP range is in CIDR notation.
7630 7631 7632 7633 7634 7635 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7630 class RiskExceptionConfigurationType < Struct.new( :blocked_ip_range_list, :skipped_ip_range_list) SENSITIVE = [] include Aws::Structure end |