interface MemberDefinitionProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Sagemaker.CfnWorkteam.MemberDefinitionProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnWorkteam_MemberDefinitionProperty | 
  Java | software.amazon.awscdk.services.sagemaker.CfnWorkteam.MemberDefinitionProperty | 
  Python | aws_cdk.aws_sagemaker.CfnWorkteam.MemberDefinitionProperty | 
  TypeScript  | aws-cdk-lib » aws_sagemaker » CfnWorkteam » MemberDefinitionProperty | 
Defines an Amazon Cognito or your own OIDC IdP user group that is part of a work team.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const memberDefinitionProperty: sagemaker.CfnWorkteam.MemberDefinitionProperty = {
  cognitoMemberDefinition: {
    cognitoClientId: 'cognitoClientId',
    cognitoUserGroup: 'cognitoUserGroup',
    cognitoUserPool: 'cognitoUserPool',
  },
  oidcMemberDefinition: {
    oidcGroups: ['oidcGroups'],
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| cognito | IResolvable | Cognito | The Amazon Cognito user group that is part of the work team. | 
| oidc | IResolvable | Oidc | A list user groups that exist in your OIDC Identity Provider (IdP). | 
cognitoMemberDefinition?
Type:
IResolvable | Cognito
(optional)
The Amazon Cognito user group that is part of the work team.
oidcMemberDefinition?
Type:
IResolvable | Oidc
(optional)
A list user groups that exist in your OIDC Identity Provider (IdP).
One to ten groups can be used to create a single private work team. When you add a user group to the list of Groups , you can add that user group to one or more private work teams. If you add a user group to a private work team, all workers in that user group are added to the work team.

 .NET
 Go
 Java
 Python
 TypeScript