CfnGroupMembershipMixinProps

class aws_cdk.mixins_preview.aws_identitystore.mixins.CfnGroupMembershipMixinProps(*, group_id=None, identity_store_id=None, member_id=None)

Bases: object

Properties for CfnGroupMembershipPropsMixin.

Parameters:
  • group_id (Optional[str]) – The identifier for a group in the identity store.

  • identity_store_id (Optional[str]) – The globally unique identifier for the identity store.

  • member_id (Union[IResolvable, MemberIdProperty, Dict[str, Any], None]) – An object containing the identifier of a group member. Setting the MemberId ‘s UserId field to a specific User’s ID indicates that user is a member of the group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-groupmembership.html

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.mixins_preview.aws_identitystore import mixins as identitystore_mixins

cfn_group_membership_mixin_props = identitystore_mixins.CfnGroupMembershipMixinProps(
    group_id="groupId",
    identity_store_id="identityStoreId",
    member_id=identitystore_mixins.CfnGroupMembershipPropsMixin.MemberIdProperty(
        user_id="userId"
    )
)

Attributes

group_id

The identifier for a group in the identity store.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-groupmembership.html#cfn-identitystore-groupmembership-groupid

identity_store_id

The globally unique identifier for the identity store.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-groupmembership.html#cfn-identitystore-groupmembership-identitystoreid

member_id

An object containing the identifier of a group member.

Setting the MemberId ‘s UserId field to a specific User’s ID indicates that user is a member of the group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-groupmembership.html#cfn-identitystore-groupmembership-memberid