Class: Aws::Translate::Types::JobDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Translate::Types::JobDetails
- Includes:
- Structure
- Defined in:
- 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
-
#documents_with_errors_count ⇒ Integer
The number of documents that could not be processed during a translation job.
-
#input_documents_count ⇒ Integer
The number of documents used as input in a translation job.
-
#translated_documents_count ⇒ Integer
The number of documents successfully processed during a translation job.
Instance Attribute Details
#documents_with_errors_count ⇒ Integer
The number of documents that could not be processed during a translation job.
608 609 610 611 612 613 614 |
# File '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_count ⇒ Integer
The number of documents used as input in a translation job.
608 609 610 611 612 613 614 |
# File '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_count ⇒ Integer
The number of documents successfully processed during a translation job.
608 609 610 611 612 613 614 |
# File '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 |