Class: Aws::CognitoIdentityProvider::Types::RiskExceptionConfigurationType

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cognitoidentityprovider/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

Instance Attribute Details

#blocked_ip_range_listArray<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.

Returns:

  • (Array<String>)


7401
7402
7403
7404
7405
7406
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 7401

class RiskExceptionConfigurationType < Struct.new(
  :blocked_ip_range_list,
  :skipped_ip_range_list)
  SENSITIVE = []
  include Aws::Structure
end

#skipped_ip_range_listArray<String>

Risk detection isn't performed on the IP addresses in this range list. The IP range is in CIDR notation.

Returns:

  • (Array<String>)


7401
7402
7403
7404
7405
7406
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 7401

class RiskExceptionConfigurationType < Struct.new(
  :blocked_ip_range_list,
  :skipped_ip_range_list)
  SENSITIVE = []
  include Aws::Structure
end