GroupReference
- class aws_cdk.aws_identitystore.GroupReference(*, group_id, identity_store_id)
Bases:
object
A reference to a Group resource.
- Parameters:
group_id (
str
) – The GroupId of the Group resource.identity_store_id (
str
) – The IdentityStoreId of the Group 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_identitystore as identitystore group_reference = identitystore.GroupReference( group_id="groupId", identity_store_id="identityStoreId" )
Attributes
- group_id
The GroupId of the Group resource.
- identity_store_id
The IdentityStoreId of the Group resource.