Struct rusoto_cognito_idp::AccountTakeoverActionType[][src]

pub struct AccountTakeoverActionType {
    pub event_action: String,
    pub notify: bool,
}

Account takeover action type.

Fields

The event action.

  • BLOCK Choosing this action will block the request.

  • MFAIFCONFIGURED Throw MFA challenge if user has configured it, else allow the request.

  • MFAREQUIRED Throw MFA challenge if user has configured it, else block the request.

  • NOACTION Allow the user sign-in.

Flag specifying whether to send a notification.

Trait Implementations

impl Default for AccountTakeoverActionType
[src]

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

impl Debug for AccountTakeoverActionType
[src]

Formats the value using the given formatter. Read more

impl Clone for AccountTakeoverActionType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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