Gets a list of labeling jobs assigned to a specified work team
Source:R/sagemaker_operations.R
sagemaker_list_labeling_jobs_for_workteam.RdGets a list of labeling jobs assigned to a specified work team.
See https://www.paws-r-sdk.com/docs/sagemaker_list_labeling_jobs_for_workteam/ for full documentation.
Usage
sagemaker_list_labeling_jobs_for_workteam(
WorkteamArn,
MaxResults = NULL,
NextToken = NULL,
CreationTimeAfter = NULL,
CreationTimeBefore = NULL,
JobReferenceCodeContains = NULL,
SortBy = NULL,
SortOrder = NULL
)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_workteamrequest 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.