[][src]Struct rusoto_cognito_idp::UpdateUserPoolClientRequest

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 analytics_configuration: Option<AnalyticsConfigurationType>,
    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".

The Amazon Pinpoint analytics configuration for collecting metrics for this user pool.

A list of allowed redirect (callback) URLs for the identity providers.

A redirect URI must:

  • Be an absolute URI.

  • Be registered with the authorization server.

  • Not use HTTP without TLS (i.e. use HTTPS instead of HTTP).

  • Not include a fragment component.

See OAuth 2.0 - Redirection Endpoint.

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.

A redirect URI must:

  • Be an absolute URI.

  • Be registered with the authorization server.

  • Not use HTTP without TLS (i.e. use HTTPS instead of HTTP).

  • Not include a fragment component.

See OAuth 2.0 - Redirection Endpoint.

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 Clone for UpdateUserPoolClientRequest
[src]

Performs copy-assignment from source. Read more

impl Default for UpdateUserPoolClientRequest
[src]

impl PartialEq<UpdateUserPoolClientRequest> for UpdateUserPoolClientRequest
[src]

impl Debug for UpdateUserPoolClientRequest
[src]

impl Serialize for UpdateUserPoolClientRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T