Struct rusoto_cognito_idp::NotifyConfigurationType[][src]

pub struct NotifyConfigurationType {
    pub block_email: Option<NotifyEmailType>,
    pub from: Option<String>,
    pub mfa_email: Option<NotifyEmailType>,
    pub no_action_email: Option<NotifyEmailType>,
    pub reply_to: Option<String>,
    pub source_arn: String,
}

The notify configuration type.

Fields

Email template used when a detected risk event is blocked.

The email address that is sending the email. It must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES.

The MFA email template used when MFA is challenged as part of a detected risk.

The email template used when a detected risk event is allowed.

The destination to which the receiver of an email should reply to.

The Amazon Resource Name (ARN) of the identity that is associated with the sending authorization policy. It permits Amazon Cognito to send for the email address specified in the From parameter.

Trait Implementations

impl Default for NotifyConfigurationType
[src]

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

impl Debug for NotifyConfigurationType
[src]

Formats the value using the given formatter. Read more

impl Clone for NotifyConfigurationType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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