@aws-cdk_aws-cognito-identitypool-alpha.UserPoolAuthenticationProviderBindConfig

interface UserPoolAuthenticationProviderBindConfig ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Cognito.IdentityPool.Alpha.UserPoolAuthenticationProviderBindConfig
Gogithub.com/aws/aws-cdk-go/awscdkcognitoidentitypoolalpha/v2#UserPoolAuthenticationProviderBindConfig
Javasoftware.amazon.awscdk.services.cognito.identitypool.alpha.UserPoolAuthenticationProviderBindConfig
Pythonaws_cdk.aws_cognito_identitypool_alpha.UserPoolAuthenticationProviderBindConfig
TypeScript (source)@aws-cdk/aws-cognito-identitypool-alpha ยป UserPoolAuthenticationProviderBindConfig

Obtainable from UserPoolAuthenticationProvider.bind()

Represents a UserPoolAuthenticationProvider Bind Configuration.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cognito_identitypool_alpha from '@aws-cdk/aws-cognito-identitypool-alpha';
const userPoolAuthenticationProviderBindConfig: cognito_identitypool_alpha.UserPoolAuthenticationProviderBindConfig = {
  clientId: 'clientId',
  providerName: 'providerName',
  serverSideTokenCheck: false,
};

Properties

NameTypeDescription
clientId๐Ÿ”นstringClient Id of the Associated User Pool Client.
providerName๐Ÿ”นstringThe identity providers associated with the UserPool.
serverSideTokenCheck๐Ÿ”นbooleanWhether to enable the identity pool's server side token check.

clientId๐Ÿ”น

Type: string

Client Id of the Associated User Pool Client.


providerName๐Ÿ”น

Type: string

The identity providers associated with the UserPool.


serverSideTokenCheck๐Ÿ”น

Type: boolean

Whether to enable the identity pool's server side token check.