interface CfnAllGroupMembershipsMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IdentityStore.CfnAllGroupMembershipsMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsidentitystore#CfnAllGroupMembershipsMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.identitystore.CfnAllGroupMembershipsMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_identitystore.CfnAllGroupMembershipsMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_identitystore » CfnAllGroupMembershipsMixinProps |
Properties for CfnAllGroupMembershipsPropsMixin.
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/cfn-property-mixins';
const cfnAllGroupMembershipsMixinProps: identitystore.CfnAllGroupMembershipsMixinProps = {
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.

.NET
Go
Java
Python
TypeScript