interface CfnUserPoolUICustomizationAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cognito.CfnUserPoolUICustomizationAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscognito#CfnUserPoolUICustomizationAttachmentMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cognito.CfnUserPoolUICustomizationAttachmentMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cognito.CfnUserPoolUICustomizationAttachmentMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cognito » 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 { aws_cognito as cognito } from '@aws-cdk/cfn-property-mixins';
const cfnUserPoolUICustomizationAttachmentMixinProps: cognito.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 | IUser | 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 | IUser
(optional)
The ID of the user pool where you want to apply branding to the classic hosted UI.

.NET
Go
Java
Python
TypeScript