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.
MaxResults
The maximum number of labeling jobs to return in each page of the response.
NextToken
If the result of the previous
list_labeling_jobs_for_workteam
request was truncated, the response includes aNextToken
. To retrieve the next set of labeling jobs, use the token in the next request.CreationTimeAfter
A filter that returns only labeling jobs created after the specified time (timestamp).
CreationTimeBefore
A filter that returns only labeling jobs created before the specified time (timestamp).
JobReferenceCodeContains
A filter the limits jobs to only the ones whose job reference code contains the specified string.
SortBy
The field to sort results by. The default is
CreationTime
.SortOrder
The 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"
)