[−][src]Struct rusoto_cognito_idp::UserPoolClientType
Contains information about a user pool client.
Fields
allowed_o_auth_flows: Option<Vec<String>>
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.
allowed_o_auth_flows_user_pool_client: Option<bool>
Set to TRUE if the client is allowed to follow the OAuth protocol when interacting with Cognito user pools.
allowed_o_auth_scopes: Option<Vec<String>>
A list of allowed OAuth
scopes. Currently supported values are "phone"
, "email"
, "openid"
, and "Cognito"
.
analytics_configuration: Option<AnalyticsConfigurationType>
The Amazon Pinpoint analytics configuration for the user pool client.
callback_ur_ls: Option<Vec<String>>
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 include a fragment component.
See OAuth 2.0 - Redirection Endpoint.
Amazon Cognito requires HTTPS over HTTP except for http://localhost for testing purposes only.
App callback URLs such as myapp://example are also supported.
client_id: Option<String>
The ID of the client associated with the user pool.
client_name: Option<String>
The client name from the user pool request of the client type.
client_secret: Option<String>
The client secret from the user pool request of the client type.
creation_date: Option<f64>
The date the user pool client was created.
default_redirect_uri: Option<String>
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 include a fragment component.
See OAuth 2.0 - Redirection Endpoint.
Amazon Cognito requires HTTPS over HTTP except for http://localhost for testing purposes only.
App callback URLs such as myapp://example are also supported.
explicit_auth_flows: Option<Vec<String>>
The explicit authentication flows.
last_modified_date: Option<f64>
The date the user pool client was last modified.
logout_ur_ls: Option<Vec<String>>
A list of allowed logout URLs for the identity providers.
read_attributes: Option<Vec<String>>
The Read-only attributes.
refresh_token_validity: Option<i64>
The time limit, in days, after which the refresh token is no longer valid and cannot be used.
supported_identity_providers: Option<Vec<String>>
A list of provider names for the identity providers that are supported on this client.
user_pool_id: Option<String>
The user pool ID for the user pool client.
write_attributes: Option<Vec<String>>
The writeable attributes.
Trait Implementations
impl PartialEq<UserPoolClientType> for UserPoolClientType
[src]
fn eq(&self, other: &UserPoolClientType) -> bool
[src]
fn ne(&self, other: &UserPoolClientType) -> bool
[src]
impl Default for UserPoolClientType
[src]
fn default() -> UserPoolClientType
[src]
impl Clone for UserPoolClientType
[src]
fn clone(&self) -> UserPoolClientType
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for UserPoolClientType
[src]
impl<'de> Deserialize<'de> for UserPoolClientType
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for UserPoolClientType
impl Sync for UserPoolClientType
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self