CfnAllGroupMembershipsPropsMixin

class aws_cdk.cfn_property_mixins.aws_identitystore.CfnAllGroupMembershipsPropsMixin(props, *, strategy=None)

Bases: Mixin

Retrieves membership metadata and attributes for a group membership in an identity store.

See:

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

CloudformationResource:

AWS::IdentityStore::AllGroupMemberships

Mixin:

true

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.cfn_property_mixins import aws_identitystore as identitystore
import aws_cdk as cdk

# merge_strategy: cdk.IMergeStrategy

cfn_all_group_memberships_props_mixin = identitystore.CfnAllGroupMembershipsPropsMixin(identitystore.CfnAllGroupMembershipsMixinProps(
    group_id="groupId",
    identity_store_id="identityStoreId",
    member_id=identitystore.CfnAllGroupMembershipsPropsMixin.MemberIdProperty(
        user_id="userId"
    )
),
    strategy=merge_strategy
)

Create a mixin to apply properties to AWS::IdentityStore::AllGroupMemberships.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

None

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['groupId', 'identityStoreId', 'memberId']

Static Methods

classmethod is_mixin(x)

Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

MemberIdProperty

class CfnAllGroupMembershipsPropsMixin.MemberIdProperty(*, user_id=None)

Bases: object

An object containing the identifier of a group member.

Parameters:

user_id (Optional[str]) – The identifier for a user in the identity store.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-identitystore-allgroupmemberships-memberid.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.cfn_property_mixins import aws_identitystore as identitystore

member_id_property = identitystore.CfnAllGroupMembershipsPropsMixin.MemberIdProperty(
    user_id="userId"
)

Attributes

user_id

The identifier for a user in the identity store.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-identitystore-allgroupmemberships-memberid.html#cfn-identitystore-allgroupmemberships-memberid-userid