interface CfnWorkteamProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnWorkteamProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnWorkteamProps |
![]() | software.amazon.awscdk.services.sagemaker.CfnWorkteamProps |
![]() | aws_cdk.aws_sagemaker.CfnWorkteamProps |
![]() | aws-cdk-lib » aws_sagemaker » CfnWorkteamProps |
Properties for defining a CfnWorkteam
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const cfnWorkteamProps: sagemaker.CfnWorkteamProps = {
description: 'description',
memberDefinitions: [{
cognitoMemberDefinition: {
cognitoClientId: 'cognitoClientId',
cognitoUserGroup: 'cognitoUserGroup',
cognitoUserPool: 'cognitoUserPool',
},
oidcMemberDefinition: {
oidcGroups: ['oidcGroups'],
},
}],
notificationConfiguration: {
notificationTopicArn: 'notificationTopicArn',
},
tags: [{
key: 'key',
value: 'value',
}],
workforceName: 'workforceName',
workteamName: 'workteamName',
};
Properties
Name | Type | Description |
---|---|---|
description? | string | A description of the work team. |
member | IResolvable | IResolvable | Member [] | A list of MemberDefinition objects that contains objects that identify the workers that make up the work team. |
notification | IResolvable | Notification | Configures SNS notifications of available or expiring work items for work teams. |
tags? | Cfn [] | An array of key-value pairs. |
workforce | string | The name of the workforce. |
workteam | string | The name of the work team. |
description?
Type:
string
(optional)
A description of the work team.
memberDefinitions?
Type:
IResolvable
|
IResolvable
|
Member
[]
(optional)
A list of MemberDefinition
objects that contains objects that identify the workers that make up the work team.
Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (IdP). For private workforces created using Amazon Cognito use CognitoMemberDefinition
. For workforces created using your own OIDC identity provider (IdP) use OidcMemberDefinition
.
notificationConfiguration?
Type:
IResolvable
|
Notification
(optional)
Configures SNS notifications of available or expiring work items for work teams.
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs.
workforceName?
Type:
string
(optional)
The name of the workforce.
workteamName?
Type:
string
(optional)
The name of the work team.