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)


1560
1561
1562
1563
1564
1565
1566
1567
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 1560

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)


1560
1561
1562
1563
1564
1565
1566
1567
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 1560

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)


1560
1561
1562
1563
1564
1565
1566
1567
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 1560

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)


1560
1561
1562
1563
1564
1565
1566
1567
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 1560

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