Skip to content

List Indices

kendra_list_indices R Documentation

Lists the Amazon Kendra indexes that you created

Description

Lists the Amazon Kendra indexes that you created.

Usage

kendra_list_indices(NextToken, MaxResults)

Arguments

NextToken

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.

MaxResults

The maximum number of indices to return.

Value

A list with the following syntax:

list(
  IndexConfigurationSummaryItems = list(
    list(
      Name = "string",
      Id = "string",
      Edition = "DEVELOPER_EDITION"|"ENTERPRISE_EDITION",
      CreatedAt = as.POSIXct(
        "2015-01-01"
      ),
      UpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      Status = "CREATING"|"ACTIVE"|"DELETING"|"FAILED"|"UPDATING"|"SYSTEM_UPDATING"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_indices(
  NextToken = "string",
  MaxResults = 123
)