interface CfnGroupMembershipMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IdentityStore.Mixins.CfnGroupMembershipMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsidentitystore/mixins#CfnGroupMembershipMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.identitystore.mixins.CfnGroupMembershipMixinProps |
Python | aws_cdk.mixins_preview.aws_identitystore.mixins.CfnGroupMembershipMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_identitystore » mixins » CfnGroupMembershipMixinProps |
Properties for CfnGroupMembershipPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as identitystore_mixins } from '@aws-cdk/mixins-preview/aws-identitystore';
const cfnGroupMembershipMixinProps: identitystore_mixins.CfnGroupMembershipMixinProps = {
groupId: 'groupId',
identityStoreId: 'identityStoreId',
memberId: {
userId: 'userId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The identifier for a group in the identity store. |
| identity | string | The globally unique identifier for the identity store. |
| member | IResolvable | Member | An object containing the identifier of a group member. |
groupId?
Type:
string
(optional)
The identifier for a group in the identity store.
identityStoreId?
Type:
string
(optional)
The globally unique identifier for the identity store.
memberId?
Type:
IResolvable | Member
(optional)
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.

.NET
Go
Java
Python
TypeScript