interface IdentityPoolReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cognito.IdentityPoolReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscognito#IdentityPoolReference |
Java | software.amazon.awscdk.services.cognito.IdentityPoolReference |
Python | aws_cdk.aws_cognito.IdentityPoolReference |
TypeScript | aws-cdk-lib » aws_cognito » IdentityPoolReference |
A reference to a IdentityPool resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognito as cognito } from 'aws-cdk-lib';
const identityPoolReference: cognito.IdentityPoolReference = {
identityPoolId: 'identityPoolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| identity | string | The Id of the IdentityPool resource. |
identityPoolId
Type:
string
The Id of the IdentityPool resource.

.NET
Go
Java
Python
TypeScript