Struct rusoto_cognito_idp::UserPoolClientDescription[][src]

pub struct UserPoolClientDescription {
    pub client_id: Option<String>,
    pub client_name: Option<String>,
    pub user_pool_id: Option<String>,
}

The description of the user pool client.

Fields

The ID of the client associated with the user pool.

The client name from the user pool client description.

The user pool ID for the user pool where you want to describe the user pool client.

Trait Implementations

impl Default for UserPoolClientDescription
[src]

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

impl Debug for UserPoolClientDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for UserPoolClientDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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