Class: Aws::CognitoIdentityProvider::Types::RiskExceptionConfigurationType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::RiskExceptionConfigurationType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Exceptions to the risk evaluation configuration, including always-allow and always-block IP address ranges.
This data type is a request parameter of [SetRiskConfiguration] and a response parameter of [DescribeRiskConfiguration].
[1]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_SetRiskConfiguration.html [2]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_DescribeRiskConfiguration.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#blocked_ip_range_list ⇒ Array<String>
An always-block IP address list.
-
#skipped_ip_range_list ⇒ Array<String>
An always-allow IP address list.
Instance Attribute Details
#blocked_ip_range_list ⇒ Array<String>
An always-block IP address list. Overrides the risk decision and always blocks authentication requests. This parameter is displayed and set in CIDR notation.
9505 9506 9507 9508 9509 9510 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9505 class RiskExceptionConfigurationType < Struct.new( :blocked_ip_range_list, :skipped_ip_range_list) SENSITIVE = [] include Aws::Structure end |
#skipped_ip_range_list ⇒ Array<String>
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.
9505 9506 9507 9508 9509 9510 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9505 class RiskExceptionConfigurationType < Struct.new( :blocked_ip_range_list, :skipped_ip_range_list) SENSITIVE = [] include Aws::Structure end |