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

Class: Aws::Translate::Types::TextTranslationJobFilter

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

Overview

Note:

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

{
  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,
}

Provides information for filtering a list of translation jobs. For more information, see ListTextTranslationJobs.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#job_nameString

Filters the list of jobs by name.

Returns:

  • (String)

    Filters the list of jobs by name.

#job_statusString

Filters the list of jobs based by job status.

Possible values:

  • SUBMITTED
  • IN_PROGRESS
  • COMPLETED
  • COMPLETED_WITH_ERROR
  • FAILED
  • STOP_REQUESTED
  • STOPPED

Returns:

  • (String)

    Filters the list of jobs based by job status.

#submitted_after_timeTime

Filters the list of jobs based on the time that the job was submitted for processing and returns only the jobs submitted after the specified time. Jobs are returned in descending order, newest to oldest.

Returns:

  • (Time)

    Filters the list of jobs based on the time that the job was submitted for processing and returns only the jobs submitted after the specified time.

#submitted_before_timeTime

Filters the list of jobs based on the time that the job was submitted for processing and returns only the jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest.

Returns:

  • (Time)

    Filters the list of jobs based on the time that the job was submitted for processing and returns only the jobs submitted before the specified time.