[][src]Struct rusoto_cognito_idp::VerificationMessageTemplateType

pub struct VerificationMessageTemplateType {
    pub default_email_option: Option<String>,
    pub email_message: Option<String>,
    pub email_message_by_link: Option<String>,
    pub email_subject: Option<String>,
    pub email_subject_by_link: Option<String>,
    pub sms_message: Option<String>,
}

The template for verification messages.

Fields

default_email_option: Option<String>

The default email option.

email_message: Option<String>

The email message template.

email_message_by_link: Option<String>

The email message template for sending a confirmation link to the user.

email_subject: Option<String>

The subject line for the email message template.

email_subject_by_link: Option<String>

The subject line for the email message template for sending a confirmation link to the user.

sms_message: Option<String>

The SMS message template.

Trait Implementations

impl Clone for VerificationMessageTemplateType[src]

impl Debug for VerificationMessageTemplateType[src]

impl Default for VerificationMessageTemplateType[src]

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

impl PartialEq<VerificationMessageTemplateType> for VerificationMessageTemplateType[src]

impl Serialize for VerificationMessageTemplateType[src]

impl StructuralPartialEq for VerificationMessageTemplateType[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.