Class: Aws::Kendra::Types::BatchGetDocumentStatusResponseError
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::BatchGetDocumentStatusResponseError
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Provides a response when the status of a document could not be retrieved.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#document_id ⇒ String
The identifier of the document whose status could not be retrieved.
-
#error_code ⇒ String
Indicates the source of the error.
-
#error_message ⇒ String
States that the API could not get the status of a document.
Instance Attribute Details
#document_id ⇒ String
The identifier of the document whose status could not be retrieved.
849 850 851 852 853 854 855 |
# File 'lib/aws-sdk-kendra/types.rb', line 849 class BatchGetDocumentStatusResponseError < Struct.new( :document_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_code ⇒ String
Indicates the source of the error.
849 850 851 852 853 854 855 |
# File 'lib/aws-sdk-kendra/types.rb', line 849 class BatchGetDocumentStatusResponseError < Struct.new( :document_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
States that the API could not get the status of a document. This could be because the request is not valid or there is a system error.
849 850 851 852 853 854 855 |
# File 'lib/aws-sdk-kendra/types.rb', line 849 class BatchGetDocumentStatusResponseError < Struct.new( :document_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |