Skip to main content

labeling_jobs_for_workteams

Creates, updates, deletes, gets or lists a labeling_jobs_for_workteams resource.

Overview

Namelabeling_jobs_for_workteams
TypeResource
Idaws.sagemaker.labeling_jobs_for_workteams

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
creation_timestring (date-time)The date and time that the labeling job was created.
job_reference_codestringA unique identifier for a labeling job. You can use this to refer to a specific labeling job. (pattern: <code>.+</code>)
label_countersobjectProvides information about the progress of a labeling job.
labeling_job_namestringThe 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_objectintegerThe configured number of workers per data object.
work_requester_account_idstringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_labeling_jobs_for_workteamselectregionGets 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;