UserPoolUICustomizationAttachmentReference
- class aws_cdk.aws_cognito.UserPoolUICustomizationAttachmentReference(*, client_id, user_pool_id)
Bases:
object
A reference to a UserPoolUICustomizationAttachment resource.
- Parameters:
client_id (
str
) – The ClientId of the UserPoolUICustomizationAttachment resource.user_pool_id (
str
) – The UserPoolId of the UserPoolUICustomizationAttachment resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_cognito as cognito user_pool_uICustomization_attachment_reference = cognito.UserPoolUICustomizationAttachmentReference( client_id="clientId", user_pool_id="userPoolId" )
Attributes
- client_id
The ClientId of the UserPoolUICustomizationAttachment resource.
- user_pool_id
The UserPoolId of the UserPoolUICustomizationAttachment resource.