Struct rusoto_cognito_idp::CodeDeliveryDetailsType[][src]

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

The code delivery details being returned from the server.

Fields

The attribute name.

The delivery medium (email message or phone number).

The destination for the code delivery details.

Trait Implementations

impl Default for CodeDeliveryDetailsType
[src]

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

impl Debug for CodeDeliveryDetailsType
[src]

Formats the value using the given formatter. Read more

impl Clone for CodeDeliveryDetailsType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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