Class: Aws::Kendra::Types::ListFaqsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::ListFaqsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#faq_summary_items ⇒ Array<Types::FaqSummary>
information about the FAQs associated with the specified index.
-
#next_token ⇒ String
The `ListFaqs` operation returns a page of FAQs at a time.
Instance Attribute Details
#faq_summary_items ⇒ Array<Types::FaqSummary>
information about the FAQs associated with the specified index.
4045 4046 4047 4048 4049 4050 |
# File 'lib/aws-sdk-kendra/types.rb', line 4045 class ListFaqsResponse < Struct.new( :next_token, :faq_summary_items) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The `ListFaqs` operation returns a page of FAQs at a time. The maximum size of the page is set by the `MaxResults` parameter. If there are more jobs in the list than the page size, Amazon Kendra returns the `NextPage` token. Include the token in the next request to the `ListFaqs` operation to return the next page of FAQs.
4045 4046 4047 4048 4049 4050 |
# File 'lib/aws-sdk-kendra/types.rb', line 4045 class ListFaqsResponse < Struct.new( :next_token, :faq_summary_items) SENSITIVE = [] include Aws::Structure end |