CfnAllGroupMembershipsPropsMixin
- class aws_cdk.cfn_property_mixins.aws_identitystore.CfnAllGroupMembershipsPropsMixin(props, *, strategy=None)
Bases:
MixinRetrieves membership metadata and attributes for a group membership in an identity store.
- See:
- 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:
props (
Union[CfnAllGroupMembershipsMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()
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
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.
MemberIdProperty
- class CfnAllGroupMembershipsPropsMixin.MemberIdProperty(*, user_id=None)
Bases:
objectAn object containing the identifier of a group member.
- Parameters:
user_id (
Optional[str]) – The identifier for a user in the identity store.- See:
- 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.