Class: Aws::Translate::Types::JobDetails

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

Overview

The number of documents successfully and unsuccessfully processed during a translation job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#documents_with_errors_countInteger

The number of documents that could not be processed during a translation job.

Returns:

  • (Integer)


608
609
610
611
612
613
614
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 608

class JobDetails < Struct.new(
  :translated_documents_count,
  :documents_with_errors_count,
  :input_documents_count)
  SENSITIVE = []
  include Aws::Structure
end

#input_documents_countInteger

The number of documents used as input in a translation job.

Returns:

  • (Integer)


608
609
610
611
612
613
614
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 608

class JobDetails < Struct.new(
  :translated_documents_count,
  :documents_with_errors_count,
  :input_documents_count)
  SENSITIVE = []
  include Aws::Structure
end

#translated_documents_countInteger

The number of documents successfully processed during a translation job.

Returns:

  • (Integer)


608
609
610
611
612
613
614
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 608

class JobDetails < Struct.new(
  :translated_documents_count,
  :documents_with_errors_count,
  :input_documents_count)
  SENSITIVE = []
  include Aws::Structure
end