Class: Aws::Kendra::Types::Status
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::Status
- Defined in:
- gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb
Overview
Provides information about the status of documents submitted for indexing.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#document_id ⇒ String
The identifier of the document.
-
#document_status ⇒ String
The current status of a document.
-
#failure_code ⇒ String
Indicates the source of the error.
-
#failure_reason ⇒ String
Provides detailed information about why the document couldn't be indexed.
Instance Attribute Details
#document_id ⇒ String
The identifier of the document.
9399 9400 9401 9402 9403 9404 9405 9406 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 9399 class Status < Struct.new( :document_id, :document_status, :failure_code, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#document_status ⇒ String
The current status of a document.
If the document was submitted for deletion, the status is
NOT_FOUND
after the document is deleted.
9399 9400 9401 9402 9403 9404 9405 9406 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 9399 class Status < Struct.new( :document_id, :document_status, :failure_code, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#failure_code ⇒ String
Indicates the source of the error.
9399 9400 9401 9402 9403 9404 9405 9406 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 9399 class Status < Struct.new( :document_id, :document_status, :failure_code, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#failure_reason ⇒ String
Provides detailed information about why the document couldn't be indexed. Use this information to correct the error before you resubmit the document for indexing.
9399 9400 9401 9402 9403 9404 9405 9406 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 9399 class Status < Struct.new( :document_id, :document_status, :failure_code, :failure_reason) SENSITIVE = [] include Aws::Structure end |