UserPoolDomainReference

class aws_cdk.aws_cognito.UserPoolDomainReference(*, domain, user_pool_id)

Bases: object

A reference to a UserPoolDomain resource.

Parameters:
  • domain (str) – The Domain of the UserPoolDomain resource.

  • user_pool_id (str) – The UserPoolId of the UserPoolDomain 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_domain_reference = cognito.UserPoolDomainReference(
    domain="domain",
    user_pool_id="userPoolId"
)

Attributes

domain

The Domain of the UserPoolDomain resource.

user_pool_id

The UserPoolId of the UserPoolDomain resource.