[][src]Struct rusoto_cognito_idp::RiskExceptionConfigurationType

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

blocked_ip_range_list: Option<Vec<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 associated routing prefix.

skipped_ip_range_list: Option<Vec<String>>

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

Trait Implementations

impl Clone for RiskExceptionConfigurationType[src]

impl Debug for RiskExceptionConfigurationType[src]

impl Default for RiskExceptionConfigurationType[src]

impl<'de> Deserialize<'de> for RiskExceptionConfigurationType[src]

impl PartialEq<RiskExceptionConfigurationType> for RiskExceptionConfigurationType[src]

impl Serialize for RiskExceptionConfigurationType[src]

impl StructuralPartialEq for RiskExceptionConfigurationType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.