interface IdentityPoolPrincipalTagReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Cognito.IdentityPoolPrincipalTagReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscognito#IdentityPoolPrincipalTagReference |
Java | software.amazon.awscdk.interfaces.cognito.IdentityPoolPrincipalTagReference |
Python | aws_cdk.interfaces.aws_cognito.IdentityPoolPrincipalTagReference |
TypeScript | aws-cdk-lib » interfaces » aws_cognito » IdentityPoolPrincipalTagReference |
A reference to a IdentityPoolPrincipalTag 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_cognito } from 'aws-cdk-lib/interfaces';
const identityPoolPrincipalTagReference: interfaces_cognito.IdentityPoolPrincipalTagReference = {
identityPoolId: 'identityPoolId',
identityProviderName: 'identityProviderName',
};
Properties
| Name | Type | Description |
|---|---|---|
| identity | string | The IdentityPoolId of the IdentityPoolPrincipalTag resource. |
| identity | string | The IdentityProviderName of the IdentityPoolPrincipalTag resource. |
identityPoolId
Type:
string
The IdentityPoolId of the IdentityPoolPrincipalTag resource.
identityProviderName
Type:
string
The IdentityProviderName of the IdentityPoolPrincipalTag resource.

.NET
Go
Java
Python
TypeScript