Class: Aws::Kendra::Types::BatchGetDocumentStatusResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::BatchGetDocumentStatusResponse
- Defined in:
- gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#document_status_list ⇒ Array<Types::Status>
The status of documents.
-
#errors ⇒ Array<Types::BatchGetDocumentStatusResponseError>
A list of documents that Amazon Kendra couldn't get the status for.
Instance Attribute Details
#document_status_list ⇒ Array<Types::Status>
The status of documents. The status indicates if the document is waiting to be indexed, is in the process of indexing, has completed indexing, or failed indexing. If a document failed indexing, the status provides the reason why.
598 599 600 601 602 603 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 598 class BatchGetDocumentStatusResponse < Struct.new( :errors, :document_status_list) SENSITIVE = [] include Aws::Structure end |
#errors ⇒ Array<Types::BatchGetDocumentStatusResponseError>
A list of documents that Amazon Kendra couldn't get the status for. The list includes the ID of the document and the reason that the status couldn't be found.
598 599 600 601 602 603 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 598 class BatchGetDocumentStatusResponse < Struct.new( :errors, :document_status_list) SENSITIVE = [] include Aws::Structure end |