interface MemberIdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IdentityStore.CfnGroupMembership.MemberIdProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsidentitystore#CfnGroupMembership_MemberIdProperty |
Java | software.amazon.awscdk.services.identitystore.CfnGroupMembership.MemberIdProperty |
Python | aws_cdk.aws_identitystore.CfnGroupMembership.MemberIdProperty |
TypeScript | aws-cdk-lib » aws_identitystore » CfnGroupMembership » MemberIdProperty |
An object that contains the identifier of a group member.
Setting the UserID field to the specific identifier for a user indicates that the user is a member of the group.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_identitystore as identitystore } from 'aws-cdk-lib';
const memberIdProperty: identitystore.CfnGroupMembership.MemberIdProperty = {
userId: 'userId',
};
Properties
| Name | Type | Description |
|---|---|---|
| user | string | An object containing the identifiers of resources that can be members. |
userId
Type:
string
An object containing the identifiers of resources that can be members.

.NET
Go
Java
Python
TypeScript