Struct rusoto_cognito_idp::UpdateUserPoolClientRequest [] [src]

pub struct UpdateUserPoolClientRequest {
    pub allowed_o_auth_flows: Option<Vec<String>>,
    pub allowed_o_auth_flows_user_pool_client: Option<bool>,
    pub allowed_o_auth_scopes: Option<Vec<String>>,
    pub callback_ur_ls: Option<Vec<String>>,
    pub client_id: String,
    pub client_name: Option<String>,
    pub default_redirect_uri: Option<String>,
    pub explicit_auth_flows: Option<Vec<String>>,
    pub logout_ur_ls: Option<Vec<String>>,
    pub read_attributes: Option<Vec<String>>,
    pub refresh_token_validity: Option<i64>,
    pub supported_identity_providers: Option<Vec<String>>,
    pub user_pool_id: String,
    pub write_attributes: Option<Vec<String>>,
}

Represents the request to update the user pool client.

Fields

Set to code to initiate a code grant flow, which provides an authorization code as the response. This code can be exchanged for access tokens with the token endpoint.

Set to token to specify that the client should get the access token (and, optionally, ID token, based on scopes) directly.

Set to TRUE if the client is allowed to follow the OAuth protocol when interacting with Cognito user pools.

A list of allowed OAuth scopes. Currently supported values are "phone", "email", "openid", and "Cognito".

A list of allowed callback URLs for the identity providers.

The ID of the client associated with the user pool.

The client name from the update user pool client request.

The default redirect URI. Must be in the CallbackURLs list.

Explicit authentication flows.

A list of allowed logout URLs for the identity providers.

The read-only attributes of the user pool.

The time limit, in days, after which the refresh token is no longer valid and cannot be used.

A list of provider names for the identity providers that are supported on this client.

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

The writeable attributes of the user pool.

Trait Implementations

impl Default for UpdateUserPoolClientRequest
[src]

[src]

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

impl Debug for UpdateUserPoolClientRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateUserPoolClientRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations