Struct rusoto_cognito_idp::SetUICustomizationRequest[][src]

pub struct SetUICustomizationRequest {
    pub css: Option<String>,
    pub client_id: Option<String>,
    pub image_file: Option<Vec<u8>>,
    pub user_pool_id: String,
}

Fields

The CSS values in the UI customization.

The client ID for the client app.

The uploaded logo image for the UI customization.

The user pool ID for the user pool.

Trait Implementations

impl Default for SetUICustomizationRequest
[src]

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

impl Debug for SetUICustomizationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for SetUICustomizationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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