Class CfnWorkteam
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.sagemaker.CfnWorkteam
- All Implemented Interfaces:
IInspectable
,ITaggable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:26.897Z")
@Stability(Stable)
public class CfnWorkteam
extends CfnResource
implements IInspectable, ITaggable
Creates a new work team for labeling your data.
A work team is defined by one or more Amazon Cognito user pools. You must first create the user pools before you can create a work team.
You cannot create more than 25 work teams in an account and region.
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.*; CfnWorkteam cfnWorkteam = CfnWorkteam.Builder.create(this, "MyCfnWorkteam") .description("description") .memberDefinitions(List.of(MemberDefinitionProperty.builder() .cognitoMemberDefinition(CognitoMemberDefinitionProperty.builder() .cognitoClientId("cognitoClientId") .cognitoUserGroup("cognitoUserGroup") .cognitoUserPool("cognitoUserPool") .build()) .oidcMemberDefinition(OidcMemberDefinitionProperty.builder() .oidcGroups(List.of("oidcGroups")) .build()) .build())) .notificationConfiguration(NotificationConfigurationProperty.builder() .notificationTopicArn("notificationTopicArn") .build()) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .workforceName("workforceName") .workteamName("workteamName") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forCfnWorkteam
.static interface
Identifies a Amazon Cognito user group.static interface
Defines an Amazon Cognito or your own OIDC IdP user group that is part of a work team.static interface
Configures Amazon SNS notifications of available or expiring work items for work teams.static interface
A list of user groups that exist in your OIDC Identity Provider (IdP).Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnWorkteam
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnWorkteam
(software.amazon.jsii.JsiiObjectRef objRef) CfnWorkteam
(software.constructs.Construct scope, String id) CfnWorkteam
(software.constructs.Construct scope, String id, CfnWorkteamProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe name of the work team.A description of the work team.A list ofMemberDefinition
objects that contains objects that identify the workers that make up the work team.Configures SNS notifications of available or expiring work items for work teams.getTags()
Tag Manager which manages the tags for this resource.An array of key-value pairs.The name of the workforce.The name of the work team.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setDescription
(String value) A description of the work team.void
setMemberDefinitions
(List<Object> value) A list ofMemberDefinition
objects that contains objects that identify the workers that make up the work team.void
setMemberDefinitions
(IResolvable value) A list ofMemberDefinition
objects that contains objects that identify the workers that make up the work team.void
Configures SNS notifications of available or expiring work items for work teams.void
Configures SNS notifications of available or expiring work items for work teams.void
setTagsRaw
(List<CfnTag> value) An array of key-value pairs.void
setWorkforceName
(String value) The name of the workforce.void
setWorkteamName
(String value) The name of the work team.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnWorkteam
protected CfnWorkteam(software.amazon.jsii.JsiiObjectRef objRef) -
CfnWorkteam
protected CfnWorkteam(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnWorkteam
@Stability(Stable) public CfnWorkteam(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnWorkteamProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties.
-
CfnWorkteam
@Stability(Stable) public CfnWorkteam(@NotNull software.constructs.Construct scope, @NotNull String id) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrId
-
getAttrWorkteamName
The name of the work team. -
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getTags
Tag Manager which manages the tags for this resource. -
getDescription
A description of the work team. -
setDescription
A description of the work team. -
getMemberDefinitions
A list ofMemberDefinition
objects that contains objects that identify the workers that make up the work team. -
setMemberDefinitions
A list ofMemberDefinition
objects that contains objects that identify the workers that make up the work team. -
setMemberDefinitions
A list ofMemberDefinition
objects that contains objects that identify the workers that make up the work team. -
getNotificationConfiguration
Configures SNS notifications of available or expiring work items for work teams. -
setNotificationConfiguration
Configures SNS notifications of available or expiring work items for work teams. -
setNotificationConfiguration
@Stability(Stable) public void setNotificationConfiguration(@Nullable CfnWorkteam.NotificationConfigurationProperty value) Configures SNS notifications of available or expiring work items for work teams. -
getTagsRaw
An array of key-value pairs. -
setTagsRaw
An array of key-value pairs. -
getWorkforceName
The name of the workforce. -
setWorkforceName
The name of the workforce. -
getWorkteamName
The name of the work team. -
setWorkteamName
The name of the work team.
-