UserPoolReference
- class aws_cdk.interfaces.aws_cognito.UserPoolReference(*, user_pool_arn, user_pool_id)
Bases:
objectA reference to a UserPool resource.
- Parameters:
user_pool_arn (
str) – The ARN of the UserPool resource.user_pool_id (
str) – The UserPoolId of the UserPool 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 user_pool_reference = interfaces_aws_cognito.UserPoolReference( user_pool_arn="userPoolArn", user_pool_id="userPoolId" )
Attributes
- user_pool_arn
The ARN of the UserPool resource.
- user_pool_id
The UserPoolId of the UserPool resource.