interface GroupMembershipReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IdentityStore.GroupMembershipReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsidentitystore#GroupMembershipReference |
Java | software.amazon.awscdk.interfaces.identitystore.GroupMembershipReference |
Python | aws_cdk.interfaces.aws_identitystore.GroupMembershipReference |
TypeScript | aws-cdk-lib » interfaces » aws_identitystore » GroupMembershipReference |
A reference to a GroupMembership resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_identitystore as interfaces_aws_identitystore } from 'aws-cdk-lib/interfaces';
const groupMembershipReference: interfaces_aws_identitystore.GroupMembershipReference = {
identityStoreId: 'identityStoreId',
membershipId: 'membershipId',
};
Properties
| Name | Type | Description |
|---|---|---|
| identity | string | The IdentityStoreId of the GroupMembership resource. |
| membership | string | The MembershipId of the GroupMembership resource. |
identityStoreId
Type:
string
The IdentityStoreId of the GroupMembership resource.
membershipId
Type:
string
The MembershipId of the GroupMembership resource.

.NET
Go
Java
Python
TypeScript