CfnUserPoolUICustomizationAttachmentProps
- class aws_cdk.aws_cognito.CfnUserPoolUICustomizationAttachmentProps(*, client_id, user_pool_id, css=None)
Bases:
objectProperties for defining a
CfnUserPoolUICustomizationAttachment.- Parameters:
client_id (
str) – 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 toALL).user_pool_id (
str) – The user pool ID for the user pool.css (
Optional[str]) – The CSS values in the UI customization.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_cognito as cognito cfn_user_pool_uICustomization_attachment_props = cognito.CfnUserPoolUICustomizationAttachmentProps( client_id="clientId", user_pool_id="userPoolId", # the properties below are optional css="css" )
Attributes
- client_id
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).
- css
The CSS values in the UI customization.
- user_pool_id
The user pool ID for the user pool.