Struct rusoto_cognito_identity::CognitoIdentityProvider[][src]

pub struct CognitoIdentityProvider {
    pub client_id: Option<String>,
    pub provider_name: Option<String>,
    pub server_side_token_check: Option<bool>,
}

A provider representing an Amazon Cognito Identity User Pool and its client ID.

Fields

The client ID for the Amazon Cognito Identity User Pool.

The provider name for an Amazon Cognito Identity User Pool. For example, cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789.

TRUE if server-side token validation is enabled for the identity provider’s token.

Trait Implementations

impl Default for CognitoIdentityProvider
[src]

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

impl Debug for CognitoIdentityProvider
[src]

Formats the value using the given formatter. Read more

impl Clone for CognitoIdentityProvider
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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