List Labeling Jobs
| sagemaker_list_labeling_jobs | R Documentation |
Gets a list of labeling jobs¶
Description¶
Gets a list of labeling jobs.
Usage¶
sagemaker_list_labeling_jobs(CreationTimeAfter, CreationTimeBefore,
LastModifiedTimeAfter, LastModifiedTimeBefore, MaxResults, NextToken,
NameContains, SortBy, SortOrder, StatusEquals)
Arguments¶
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).
LastModifiedTimeAfterA filter that returns only labeling jobs modified after the specified time (timestamp).
LastModifiedTimeBeforeA filter that returns only labeling jobs modified before the specified time (timestamp).
MaxResultsThe maximum number of labeling jobs to return in each page of the response.
NextTokenIf the result of the previous
list_labeling_jobsrequest was truncated, the response includes aNextToken. To retrieve the next set of labeling jobs, use the token in the next request.NameContainsA string in the labeling job name. This filter returns only labeling jobs whose name contains the specified string.
SortByThe field to sort results by. The default is
CreationTime.SortOrderThe sort order for results. The default is
Ascending.StatusEqualsA filter that retrieves only labeling jobs with a specific status.
Value¶
A list with the following syntax:
list(
LabelingJobSummaryList = list(
list(
LabelingJobName = "string",
LabelingJobArn = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
LabelingJobStatus = "Initializing"|"InProgress"|"Completed"|"Failed"|"Stopping"|"Stopped",
LabelCounters = list(
TotalLabeled = 123,
HumanLabeled = 123,
MachineLabeled = 123,
FailedNonRetryableError = 123,
Unlabeled = 123
),
WorkteamArn = "string",
PreHumanTaskLambdaArn = "string",
AnnotationConsolidationLambdaArn = "string",
FailureReason = "string",
LabelingJobOutput = list(
OutputDatasetS3Uri = "string",
FinalActiveLearningModelArn = "string"
),
InputConfig = list(
DataSource = list(
S3DataSource = list(
ManifestS3Uri = "string"
),
SnsDataSource = list(
SnsTopicArn = "string"
)
),
DataAttributes = list(
ContentClassifiers = list(
"FreeOfPersonallyIdentifiableInformation"|"FreeOfAdultContent"
)
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_labeling_jobs(
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeAfter = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeBefore = as.POSIXct(
"2015-01-01"
),
MaxResults = 123,
NextToken = "string",
NameContains = "string",
SortBy = "Name"|"CreationTime"|"Status",
SortOrder = "Ascending"|"Descending",
StatusEquals = "Initializing"|"InProgress"|"Completed"|"Failed"|"Stopping"|"Stopped"
)