labeling_jobs_for_workteams
Creates, updates, deletes, gets or lists a labeling_jobs_for_workteams resource.
Overview
| Name | labeling_jobs_for_workteams |
| Type | Resource |
| Id | aws.sagemaker.labeling_jobs_for_workteams |
Fields
The following fields are returned by SELECT queries:
- list_labeling_jobs_for_workteam
| Name | Datatype | Description |
|---|---|---|
creation_time | string (date-time) | The date and time that the labeling job was created. |
job_reference_code | string | A unique identifier for a labeling job. You can use this to refer to a specific labeling job. (pattern: <code>.+</code>) |
label_counters | object | Provides information about the progress of a labeling job. |
labeling_job_name | string | The name of the labeling job that the work team is assigned to. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}</code>) |
number_of_human_workers_per_data_object | integer | The configured number of workers per data object. |
work_requester_account_id | string | The Amazon Web Services account ID of the account used to start the labeling job. (pattern: <code>\d+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_labeling_jobs_for_workteam | select | region | Gets a list of labeling jobs assigned to a specified work team. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_labeling_jobs_for_workteam
Gets a list of labeling jobs assigned to a specified work team.
SELECT
creation_time,
job_reference_code,
label_counters,
labeling_job_name,
number_of_human_workers_per_data_object,
work_requester_account_id
FROM aws.sagemaker.labeling_jobs_for_workteams
WHERE region = '{{ region }}' -- required
;