Struct rusoto_cognito_idp::UICustomizationType[][src]

pub struct UICustomizationType {
    pub css: Option<String>,
    pub css_version: Option<String>,
    pub client_id: Option<String>,
    pub creation_date: Option<f64>,
    pub image_url: Option<String>,
    pub last_modified_date: Option<f64>,
    pub user_pool_id: Option<String>,
}

A container for the UI customization information for a user pool's built-in app UI.

Fields

The CSS values in the UI customization.

The CSS version number.

The client ID for the client app.

The creation date for the UI customization.

The logo image for the UI customization.

The last-modified date for the UI customization.

The user pool ID for the user pool.

Trait Implementations

impl Default for UICustomizationType
[src]

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

impl Debug for UICustomizationType
[src]

Formats the value using the given formatter. Read more

impl Clone for UICustomizationType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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