AivenOrganizationGroupMemberReferenceByKeyArgs

interface AivenOrganizationGroupMemberReferenceByKeyArgs { groupId?: undefined; groupKey: string; userId?: undefined; userKey: string; }

Group member reference by key.

Example

CODE
const memberByKey: AivenOrganizationGroupMemberReferenceByKeyArgs = {
  groupKey: 'platform-admins',
  userKey: 'alice@example.com',
};

Properties

groupId: undefined

Direct group ID is not allowed when groupKey is used.

groupKey: string

Group reference key.

userId: undefined

Direct user ID is not allowed when userKey is used.

userKey: string

User reference key.