Struct rusoto_cognito_idp::CreateUserPoolClientRequest[][src]

pub struct CreateUserPoolClientRequest {
    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_name: String,
    pub default_redirect_uri: Option<String>,
    pub explicit_auth_flows: Option<Vec<String>>,
    pub generate_secret: Option<bool>,
    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 create a 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 callback URLs for the identity providers.

The client name for the user pool client you would like to create.

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

The explicit authentication flows.

Boolean to specify whether you want to generate a secret for the user pool client being created.

A list of allowed logout URLs for the identity providers.

The read attributes.

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 create a user pool client.

The write attributes.

Trait Implementations

impl Default for CreateUserPoolClientRequest
[src]

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

impl Debug for CreateUserPoolClientRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateUserPoolClientRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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