ManagedLoginBrandingReference
- class aws_cdk.aws_cognito.ManagedLoginBrandingReference(*, managed_login_branding_id, user_pool_id)
Bases:
object
A reference to a ManagedLoginBranding resource.
- Parameters:
managed_login_branding_id (
str
) – The ManagedLoginBrandingId of the ManagedLoginBranding resource.user_pool_id (
str
) – The UserPoolId of the ManagedLoginBranding 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 managed_login_branding_reference = cognito.ManagedLoginBrandingReference( managed_login_branding_id="managedLoginBrandingId", user_pool_id="userPoolId" )
Attributes
- managed_login_branding_id
The ManagedLoginBrandingId of the ManagedLoginBranding resource.
- user_pool_id
The UserPoolId of the ManagedLoginBranding resource.