Struct rusoto_cognito_idp::GetUserResponse [] [src]

pub struct GetUserResponse {
    pub mfa_options: Option<Vec<MFAOptionType>>,
    pub user_attributes: Vec<AttributeType>,
    pub username: String,
}

Represents the response from the server from the request to get information about the user.

Fields

Specifies the options for MFA (e.g., email or phone number).

An array of name-value pairs representing user attributes.

For custom attributes, you must prepend the custom: prefix to the attribute name.

The user name of the user you wish to retrieve from the get user request.

Trait Implementations

impl Default for GetUserResponse
[src]

[src]

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

impl Debug for GetUserResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetUserResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations