interface IdentityPoolReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Cognito.IdentityPoolReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscognito#IdentityPoolReference |
Java | software.amazon.awscdk.interfaces.cognito.IdentityPoolReference |
Python | aws_cdk.interfaces.aws_cognito.IdentityPoolReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_cognito } from 'aws-cdk-lib/interfaces';
const identityPoolReference: interfaces_aws_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