Skip to content

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

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).

LastModifiedTimeAfter

A filter that returns only labeling jobs modified after the specified time (timestamp).

LastModifiedTimeBefore

A filter that returns only labeling jobs modified before the specified time (timestamp).

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 request was truncated, the response includes a NextToken. To retrieve the next set of labeling jobs, use the token in the next request.

NameContains

A string in the labeling job name. This filter returns only labeling jobs whose name 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.

StatusEquals

A 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"
)