Class: Aws::Kendra::Types::BatchDeleteDocumentResponseFailedDocument
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::BatchDeleteDocumentResponseFailedDocument
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Provides information about documents that could not be removed from an index by the BatchDeleteDocument operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
The error code for why the document couldn't be removed from the index.
-
#error_message ⇒ String
An explanation for why the document couldn't be removed from the index.
-
#id ⇒ String
The identifier of the document that couldn't be removed from the index.
Instance Attribute Details
#error_code ⇒ String
The error code for why the document couldn't be removed from the index.
563 564 565 566 567 568 569 |
# File 'lib/aws-sdk-kendra/types.rb', line 563 class BatchDeleteDocumentResponseFailedDocument < Struct.new( :id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
An explanation for why the document couldn't be removed from the index.
563 564 565 566 567 568 569 |
# File 'lib/aws-sdk-kendra/types.rb', line 563 class BatchDeleteDocumentResponseFailedDocument < Struct.new( :id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The identifier of the document that couldn't be removed from the index.
563 564 565 566 567 568 569 |
# File 'lib/aws-sdk-kendra/types.rb', line 563 class BatchDeleteDocumentResponseFailedDocument < Struct.new( :id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |