interface WorkteamReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.WorkteamReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#WorkteamReference |
Java | software.amazon.awscdk.interfaces.sagemaker.WorkteamReference |
Python | aws_cdk.interfaces.aws_sagemaker.WorkteamReference |
TypeScript | aws-cdk-lib » interfaces » aws_sagemaker » WorkteamReference |
A reference to a Workteam resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as interfaces_sagemaker } from 'aws-cdk-lib/interfaces';
const workteamReference: interfaces_sagemaker.WorkteamReference = {
workteamId: 'workteamId',
workteamName: 'workteamName',
};
Properties
| Name | Type | Description |
|---|---|---|
| workteam | string | The Id of the Workteam resource. |
| workteam | string | The WorkteamName of the Workteam resource. |
workteamId
Type:
string
The Id of the Workteam resource.
workteamName
Type:
string
The WorkteamName of the Workteam resource.

.NET
Go
Java
Python
TypeScript