Struct rusoto_cognito_idp::UserPoolDescriptionType[][src]

pub struct UserPoolDescriptionType {
    pub creation_date: Option<f64>,
    pub id: Option<String>,
    pub lambda_config: Option<LambdaConfigType>,
    pub last_modified_date: Option<f64>,
    pub name: Option<String>,
    pub status: Option<String>,
}

A user pool description.

Fields

The date the user pool description was created.

The ID in a user pool description.

The AWS Lambda configuration information in a user pool description.

The date the user pool description was last modified.

The name in a user pool description.

The user pool status in a user pool description.

Trait Implementations

impl Default for UserPoolDescriptionType
[src]

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

impl Debug for UserPoolDescriptionType
[src]

Formats the value using the given formatter. Read more

impl Clone for UserPoolDescriptionType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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