Struct rusoto_cognito_idp::SignUpResponse [] [src]

pub struct SignUpResponse {
    pub code_delivery_details: Option<CodeDeliveryDetailsType>,
    pub user_confirmed: bool,
    pub user_sub: String,
}

The response from the server for a registration request.

Fields

The code delivery details returned by the server response to the user registration request.

A response from the server indicating that a user registration has been confirmed.

The UUID of the authenticated user. This is not the same as username.

Trait Implementations

impl Default for SignUpResponse
[src]

[src]

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

impl Debug for SignUpResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SignUpResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations