interface UserPoolAuthenticationProviderBindConfig
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Cognito.IdentityPool.UserPoolAuthenticationProviderBindConfig |
Java | software.amazon.awscdk.services.cognito.identitypool.UserPoolAuthenticationProviderBindConfig |
Python | aws_cdk.aws_cognito_identitypool.UserPoolAuthenticationProviderBindConfig |
TypeScript (source) | @aws-cdk/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 * as cognito_identitypool from '@aws-cdk/aws-cognito-identitypool';
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.