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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkteam.CognitoMemberDefinitionProperty
static final class
An implementation forCfnWorkteam.CognitoMemberDefinitionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
An identifier for an application client.An identifier for a user group.An identifier for a user pool.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCognitoClientId
An identifier for an application client.You must create the app client ID using Amazon Cognito.
-
getCognitoUserGroup
An identifier for a user group. -
getCognitoUserPool
An identifier for a user pool.The user pool must be in the same region as the service that you are calling.
-
builder
-