Struct rusoto_cognito_idp::RiskExceptionConfigurationType[][src]

pub struct RiskExceptionConfigurationType {
    pub blocked_ip_range_list: Option<Vec<String>>,
    pub skipped_ip_range_list: Option<Vec<String>>,
}

The type of the configuration to override the risk decision.

Fields

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 associated routing prefix.

Risk detection is not performed on the IP addresses in the range list. The IP range is in CIDR notation.

Trait Implementations

impl Default for RiskExceptionConfigurationType
[src]

Returns the "default value" for a type. Read more

impl Debug for RiskExceptionConfigurationType
[src]

Formats the value using the given formatter. Read more

impl Clone for RiskExceptionConfigurationType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RiskExceptionConfigurationType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations