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

.NET
Go
Java
Python
TypeScript