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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#job_nameString

Filters the list of jobs by name.

Returns:

  • (String)


1554
1555
1556
1557
1558
1559
1560
1561
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 1554

class TextTranslationJobFilter < Struct.new(
  :job_name,
  :job_status,
  :submitted_before_time,
  :submitted_after_time)
  SENSITIVE = []
  include Aws::Structure
end

#job_statusString

Filters the list of jobs based by job status.

Returns:

  • (String)


1554
1555
1556
1557
1558
1559
1560
1561
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 1554

class TextTranslationJobFilter < Struct.new(
  :job_name,
  :job_status,
  :submitted_before_time,
  :submitted_after_time)
  SENSITIVE = []
  include Aws::Structure
end

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


1554
1555
1556
1557
1558
1559
1560
1561
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 1554

class TextTranslationJobFilter < Struct.new(
  :job_name,
  :job_status,
  :submitted_before_time,
  :submitted_after_time)
  SENSITIVE = []
  include Aws::Structure
end

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


1554
1555
1556
1557
1558
1559
1560
1561
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 1554

class TextTranslationJobFilter < Struct.new(
  :job_name,
  :job_status,
  :submitted_before_time,
  :submitted_after_time)
  SENSITIVE = []
  include Aws::Structure
end