List Faqs
| kendra_list_faqs | R Documentation |
Gets a list of FAQ lists associated with an index¶
Description¶
Gets a list of FAQ lists associated with an index.
Usage¶
Arguments¶
IndexId[required] The index that contains the FAQ lists.
NextTokenIf 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 FAQs.
MaxResultsThe maximum number of FAQs to return in the response. If there are fewer results in the list, this response contains only the actual results.
Value¶
A list with the following syntax:
list(
NextToken = "string",
FaqSummaryItems = list(
list(
Id = "string",
Name = "string",
Status = "CREATING"|"UPDATING"|"ACTIVE"|"DELETING"|"FAILED",
CreatedAt = as.POSIXct(
"2015-01-01"
),
UpdatedAt = as.POSIXct(
"2015-01-01"
),
FileFormat = "CSV"|"CSV_WITH_HEADER"|"JSON",
LanguageCode = "string"
)
)
)