Class: Aws::Kendra::Types::BatchPutDocumentResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::BatchPutDocumentResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed_documents ⇒ Array<Types::BatchPutDocumentResponseFailedDocument>
A list of documents that were not added to the index because the document failed a validation check.
Instance Attribute Details
#failed_documents ⇒ Array<Types::BatchPutDocumentResponseFailedDocument>
A list of documents that were not added to the index because the document failed a validation check. Each document contains an error message that indicates why the document couldn't be added to the index.
If there was an error adding a document to an index the error is reported in your AWS CloudWatch log. For more information, see
- Monitoring Amazon Kendra with Amazon CloudWatch Logs][1
-
[1]: docs.aws.amazon.com/kendra/latest/dg/cloudwatch-logs.html
670 671 672 673 674 |
# File 'lib/aws-sdk-kendra/types.rb', line 670 class BatchPutDocumentResponse < Struct.new( :failed_documents) SENSITIVE = [] include Aws::Structure end |