You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Translate::Types::ListTextTranslationJobsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListTextTranslationJobsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  filter: {
    job_name: "JobName",
    job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED, COMPLETED_WITH_ERROR, FAILED, STOP_REQUESTED, STOPPED
    submitted_before_time: Time.now,
    submitted_after_time: Time.now,
  },
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#filterTypes::TextTranslationJobFilter

The parameters that specify which batch translation jobs to retrieve. Filters include job name, job status, and submission time. You can only set one filter at a time.

Returns:

#max_resultsInteger

The maximum number of results to return in each page. The default value is 100.

Returns:

  • (Integer)

    The maximum number of results to return in each page.

#next_tokenString

The token to request the next page of results.

Returns:

  • (String)

    The token to request the next page of results.