Class: Aws::Kendra::Types::BatchGetDocumentStatusRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::BatchGetDocumentStatusRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#document_info_list ⇒ Array<Types::DocumentInfo>
A list of ‘DocumentInfo` objects that identify the documents for which to get the status.
-
#index_id ⇒ String
The identifier of the index to add documents to.
Instance Attribute Details
#document_info_list ⇒ Array<Types::DocumentInfo>
A list of ‘DocumentInfo` objects that identify the documents for which to get the status. You identify the documents by their document ID and optional attributes.
801 802 803 804 805 806 |
# File 'lib/aws-sdk-kendra/types.rb', line 801 class BatchGetDocumentStatusRequest < Struct.new( :index_id, :document_info_list) SENSITIVE = [] include Aws::Structure end |
#index_id ⇒ String
The identifier of the index to add documents to. The index ID is returned by the [CreateIndex ][1] API.
[1]: docs.aws.amazon.com/kendra/latest/dg/API_CreateIndex.html
801 802 803 804 805 806 |
# File 'lib/aws-sdk-kendra/types.rb', line 801 class BatchGetDocumentStatusRequest < Struct.new( :index_id, :document_info_list) SENSITIVE = [] include Aws::Structure end |