interface CfnUserPoolUICustomizationAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cognito.Mixins.CfnUserPoolUICustomizationAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscognito/mixins#CfnUserPoolUICustomizationAttachmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cognito.mixins.CfnUserPoolUICustomizationAttachmentMixinProps |
Python | aws_cdk.mixins_preview.aws_cognito.mixins.CfnUserPoolUICustomizationAttachmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cognito » mixins » CfnUserPoolUICustomizationAttachmentMixinProps |
Properties for CfnUserPoolUICustomizationAttachmentPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cognito_mixins } from '@aws-cdk/mixins-preview/aws-cognito';
const cfnUserPoolUICustomizationAttachmentMixinProps: cognito_mixins.CfnUserPoolUICustomizationAttachmentMixinProps = {
clientId: 'clientId',
css: 'css',
userPoolId: 'userPoolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The app client ID for your UI customization. |
| css? | string | A plaintext CSS file that contains the custom fields that you want to apply to your user pool or app client. |
| user | string | The ID of the user pool where you want to apply branding to the classic hosted UI. |
clientId?
Type:
string
(optional)
The app client ID for your UI customization.
When this value isn't present, the customization applies to all user pool app clients that don't have client-level settings..
css?
Type:
string
(optional)
A plaintext CSS file that contains the custom fields that you want to apply to your user pool or app client.
To download a template, go to the Amazon Cognito console. Navigate to your user pool App clients tab, select Login pages , edit Hosted UI (classic) style , and select the link to CSS template.css .
userPoolId?
Type:
string
(optional)
The ID of the user pool where you want to apply branding to the classic hosted UI.

.NET
Go
Java
Python
TypeScript