Interface CfnWorkteam.MemberDefinitionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkteam.MemberDefinitionProperty.Jsii$Proxy
Enclosing class:
CfnWorkteam

@Stability(Stable) public static interface CfnWorkteam.MemberDefinitionProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 MemberDefinitionProperty memberDefinitionProperty = MemberDefinitionProperty.builder()
         .cognitoMemberDefinition(CognitoMemberDefinitionProperty.builder()
                 .cognitoClientId("cognitoClientId")
                 .cognitoUserGroup("cognitoUserGroup")
                 .cognitoUserPool("cognitoUserPool")
                 .build())
         .oidcMemberDefinition(OidcMemberDefinitionProperty.builder()
                 .oidcGroups(List.of("oidcGroups"))
                 .build())
         .build();
 

See Also: