List Labeling Jobs for Workteam
| sagemaker_list_labeling_jobs_for_workteam | R Documentation |
Gets a list of labeling jobs assigned to a specified work team¶
Description¶
Gets a list of labeling jobs assigned to a specified work team.
Usage¶
sagemaker_list_labeling_jobs_for_workteam(WorkteamArn, MaxResults,
NextToken, CreationTimeAfter, CreationTimeBefore,
JobReferenceCodeContains, SortBy, SortOrder)
Arguments¶
WorkteamArn[required] The Amazon Resource Name (ARN) of the work team for which you want to see labeling jobs for.
MaxResultsThe maximum number of labeling jobs to return in each page of the response.
NextTokenIf the result of the previous
list_labeling_jobs_for_workteamrequest was truncated, the response includes aNextToken. To retrieve the next set of labeling jobs, use the token in the next request.CreationTimeAfterA filter that returns only labeling jobs created after the specified time (timestamp).
CreationTimeBeforeA filter that returns only labeling jobs created before the specified time (timestamp).
JobReferenceCodeContainsA filter the limits jobs to only the ones whose job reference code contains the specified string.
SortByThe field to sort results by. The default is
CreationTime.SortOrderThe sort order for results. The default is
Ascending.
Value¶
A list with the following syntax:
list(
LabelingJobSummaryList = list(
list(
LabelingJobName = "string",
JobReferenceCode = "string",
WorkRequesterAccountId = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LabelCounters = list(
HumanLabeled = 123,
PendingHuman = 123,
Total = 123
),
NumberOfHumanWorkersPerDataObject = 123
)
),
NextToken = "string"
)