UserPoolClientReference
- class aws_cdk.aws_cognito.UserPoolClientReference(*, client_id, user_pool_id)
Bases:
object
A reference to a UserPoolClient resource.
- Parameters:
client_id (
str
) – The ClientId of the UserPoolClient resource.user_pool_id (
str
) – The UserPoolId of the UserPoolClient 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_client_reference = cognito.UserPoolClientReference( client_id="clientId", user_pool_id="userPoolId" )
Attributes
- client_id
The ClientId of the UserPoolClient resource.
- user_pool_id
The UserPoolId of the UserPoolClient resource.