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

Inherits:
Struct
  • Object
show all
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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

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

Returns:

  • (Array<String>)


9448
9449
9450
9451
9452
9453
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9448

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

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

Returns:

  • (Array<String>)


9448
9449
9450
9451
9452
9453
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9448

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