Interface CfnWorkteam.IMemberDefinitionProperty
Defines an Amazon Cognito or your own OIDC IdP user group that is part of a work team.
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IMemberDefinitionProperty
Syntax (vb)
Public Interface IMemberDefinitionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var memberDefinitionProperty = new MemberDefinitionProperty {
CognitoMemberDefinition = new CognitoMemberDefinitionProperty {
CognitoClientId = "cognitoClientId",
CognitoUserGroup = "cognitoUserGroup",
CognitoUserPool = "cognitoUserPool"
},
OidcMemberDefinition = new OidcMemberDefinitionProperty {
OidcGroups = new [] { "oidcGroups" }
}
};
Synopsis
Properties
Cognito |
The Amazon Cognito user group that is part of the work team. |
Oidc |
A list user groups that exist in your OIDC Identity Provider (IdP). |
Properties
CognitoMemberDefinition
The Amazon Cognito user group that is part of the work team.
virtual object CognitoMemberDefinition { get; }
Property Value
System.
Remarks
OidcMemberDefinition
A list user groups that exist in your OIDC Identity Provider (IdP).
virtual object OidcMemberDefinition { get; }
Property Value
System.
Remarks
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.