UserPoolGroupReference
- class aws_cdk.aws_cognito.UserPoolGroupReference(*, group_name, user_pool_id)
Bases:
object
A reference to a UserPoolGroup resource.
- Parameters:
group_name (
str
) – The GroupName of the UserPoolGroup resource.user_pool_id (
str
) – The UserPoolId of the UserPoolGroup 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_group_reference = cognito.UserPoolGroupReference( group_name="groupName", user_pool_id="userPoolId" )
Attributes
- group_name
The GroupName of the UserPoolGroup resource.
- user_pool_id
The UserPoolId of the UserPoolGroup resource.