TermsReference

class aws_cdk.interfaces.aws_cognito.TermsReference(*, terms_id, user_pool_id)

Bases: object

A reference to a Terms resource.

Parameters:
  • terms_id (str) – The TermsId of the Terms resource.

  • user_pool_id (str) – The UserPoolId of the Terms 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.interfaces import aws_cognito as interfaces_aws_cognito

terms_reference = interfaces_aws_cognito.TermsReference(
    terms_id="termsId",
    user_pool_id="userPoolId"
)

Attributes

terms_id

The TermsId of the Terms resource.

user_pool_id

The UserPoolId of the Terms resource.