[][src]Struct rusoto_cognito_idp::MFAOptionType

pub struct MFAOptionType {
    pub attribute_name: Option<String>,
    pub delivery_medium: Option<String>,
}

This data type is no longer supported. You can use it only for SMS MFA configurations. You can't use it for TOTP software token MFA configurations.

To set either type of MFA configuration, use the AdminSetUserMFAPreference or SetUserMFAPreference actions.

To look up information about either type of MFA configuration, use the AdminGetUserResponse$UserMFASettingList or GetUserResponse$UserMFASettingList responses.

Fields

attribute_name: Option<String>

The attribute name of the MFA option type. The only valid value is phone_number.

delivery_medium: Option<String>

The delivery medium to send the MFA code. You can use this parameter to set only the SMS delivery medium value.

Trait Implementations

impl Clone for MFAOptionType[src]

impl Debug for MFAOptionType[src]

impl Default for MFAOptionType[src]

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

impl PartialEq<MFAOptionType> for MFAOptionType[src]

impl Serialize for MFAOptionType[src]

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