interface UserPoolClientReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Cognito.UserPoolClientReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscognito#UserPoolClientReference |
Java | software.amazon.awscdk.interfaces.cognito.UserPoolClientReference |
Python | aws_cdk.interfaces.aws_cognito.UserPoolClientReference |
TypeScript | aws-cdk-lib » interfaces » aws_cognito » UserPoolClientReference |
A reference to a UserPoolClient 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 userPoolClientReference: interfaces_aws_cognito.UserPoolClientReference = {
clientId: 'clientId',
userPoolId: 'userPoolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The ClientId of the UserPoolClient resource. |
| user | string | The UserPoolId of the UserPoolClient resource. |
clientId
Type:
string
The ClientId of the UserPoolClient resource.
userPoolId
Type:
string
The UserPoolId of the UserPoolClient resource.

.NET
Go
Java
Python
TypeScript