Interface CfnWorkteam.CognitoMemberDefinitionProperty

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

@Stability(Stable) public static interface CfnWorkteam.CognitoMemberDefinitionProperty extends software.amazon.jsii.JsiiSerializable
Identifies a Amazon Cognito user group.

A user group can be used in on or more work teams.

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.*;
 CognitoMemberDefinitionProperty cognitoMemberDefinitionProperty = CognitoMemberDefinitionProperty.builder()
         .cognitoClientId("cognitoClientId")
         .cognitoUserGroup("cognitoUserGroup")
         .cognitoUserPool("cognitoUserPool")
         .build();
 

See Also: