Struct rusoto_cognito_idp::SetRiskConfigurationRequest[][src]

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

Fields

The account takeover risk configuration.

The app client ID. If ClientId is null, then the risk configuration is mapped to userPoolId. When the client ID is null, the same risk configuration is applied to all the clients in the userPool.

Otherwise, ClientId is mapped to the client. When the client ID is not null, the user pool configuration is overridden and the risk configuration for the client is used instead.

The compromised credentials risk configuration.

The configuration to override the risk decision.

The user pool ID.

Trait Implementations

impl Default for SetRiskConfigurationRequest
[src]

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

impl Debug for SetRiskConfigurationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for SetRiskConfigurationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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