Class: Aws::Kendra::Types::ListIndicesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::ListIndicesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Note:
When making an API call, you may pass ListIndicesRequest data as a hash:
{
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of data sources to return.
-
#next_token ⇒ String
If the previous response was incomplete (because there is more data to retrieve), Amazon Kendra returns a pagination token in the response.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of data sources to return.
4073 4074 4075 4076 4077 4078 |
# File 'lib/aws-sdk-kendra/types.rb', line 4073 class ListIndicesRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the previous response was incomplete (because there is more data to retrieve), Amazon Kendra returns a pagination token in the response. You can use this pagination token to retrieve the next set of indexes (`DataSourceSummaryItems`).
4073 4074 4075 4076 4077 4078 |
# File 'lib/aws-sdk-kendra/types.rb', line 4073 class ListIndicesRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |