interface CfnUserPoolUICustomizationAttachmentProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cognito.CfnUserPoolUICustomizationAttachmentProps |
Java | software.amazon.awscdk.services.cognito.CfnUserPoolUICustomizationAttachmentProps |
Python | aws_cdk.aws_cognito.CfnUserPoolUICustomizationAttachmentProps |
TypeScript | @aws-cdk/aws-cognito » CfnUserPoolUICustomizationAttachmentProps |
Properties for defining a CfnUserPoolUICustomizationAttachment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cognito from '@aws-cdk/aws-cognito';
const cfnUserPoolUICustomizationAttachmentProps: cognito.CfnUserPoolUICustomizationAttachmentProps = {
clientId: 'clientId',
userPoolId: 'userPoolId',
// the properties below are optional
css: 'css',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The client ID for the client app. |
| user | string | The user pool ID for the user pool. |
| css? | string | The CSS values in the UI customization. |
clientId
Type:
string
The client ID for the client app.
You can specify the UI customization settings for a single client (with a specific clientId) or for all clients (by setting the clientId to ALL ).
userPoolId
Type:
string
The user pool ID for the user pool.
css?
Type:
string
(optional)
The CSS values in the UI customization.

.NET
Java
Python
TypeScript