UserPoolAuthenticationProviderBindConfig

class aws_cdk.aws_cognito_identitypool.UserPoolAuthenticationProviderBindConfig(*, client_id, provider_name, server_side_token_check)

Bases: object

(experimental) Represents a UserPoolAuthenticationProvider Bind Configuration.

Parameters:
  • client_id (str) – (experimental) Client Id of the Associated User Pool Client.

  • provider_name (str) – (experimental) The identity providers associated with the UserPool.

  • server_side_token_check (bool) – (experimental) Whether to enable the identity pool’s server side token check.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_cognito_identitypool as cognito_identitypool

user_pool_authentication_provider_bind_config = cognito_identitypool.UserPoolAuthenticationProviderBindConfig(
    client_id="clientId",
    provider_name="providerName",
    server_side_token_check=False
)

Attributes

client_id

(experimental) Client Id of the Associated User Pool Client.

Stability:

experimental

provider_name

(experimental) The identity providers associated with the UserPool.

Stability:

experimental

server_side_token_check

(experimental) Whether to enable the identity pool’s server side token check.

Stability:

experimental