Struct rusoto_cognito_idp::RiskConfigurationType[][src]

pub struct RiskConfigurationType {
    pub account_takeover_risk_configuration: Option<AccountTakeoverRiskConfigurationType>,
    pub client_id: Option<String>,
    pub compromised_credentials_risk_configuration: Option<CompromisedCredentialsRiskConfigurationType>,
    pub last_modified_date: Option<f64>,
    pub risk_exception_configuration: Option<RiskExceptionConfigurationType>,
    pub user_pool_id: Option<String>,
}

The risk configuration type.

Fields

The account takeover risk configuration object including the NotifyConfiguration object and Actions to take in the case of an account takeover.

The app client ID.

The compromised credentials risk configuration object including the EventFilter and the EventAction

The last modified date.

The configuration to override the risk decision.

The user pool ID.

Trait Implementations

impl Default for RiskConfigurationType
[src]

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

impl Debug for RiskConfigurationType
[src]

Formats the value using the given formatter. Read more

impl Clone for RiskConfigurationType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RiskConfigurationType
[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