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

.NET
Go
Java
Python
TypeScript