interface UserPoolAuthenticationProviderBindConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cognito.Identitypool.UserPoolAuthenticationProviderBindConfig |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscognitoidentitypool#UserPoolAuthenticationProviderBindConfig |
Java | software.amazon.awscdk.services.cognito.identitypool.UserPoolAuthenticationProviderBindConfig |
Python | aws_cdk.aws_cognito_identitypool.UserPoolAuthenticationProviderBindConfig |
TypeScript (source) | aws-cdk-lib » aws_cognito_identitypool » UserPoolAuthenticationProviderBindConfig |
Obtainable from
User.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 { aws_cognito_identitypool as cognito_identitypool } from 'aws-cdk-lib';
const userPoolAuthenticationProviderBindConfig: cognito_identitypool.UserPoolAuthenticationProviderBindConfig = {
clientId: 'clientId',
providerName: 'providerName',
serverSideTokenCheck: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | Client Id of the Associated User Pool Client. |
| provider | string | The identity providers associated with the UserPool. |
| server | boolean | Whether 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.

.NET
Go
Java
Python
TypeScript (