Skip to content

List Rescore Execution Plans

kendraranking_list_rescore_execution_plans R Documentation

Lists your rescore execution plans

Description

Lists your rescore execution plans. A rescore execution plan is an Amazon Kendra Intelligent Ranking resource used for provisioning the rescore API.

Usage

kendraranking_list_rescore_execution_plans(NextToken, MaxResults)

Arguments

NextToken

If the response is truncated, Amazon Kendra Intelligent Ranking returns a pagination token in the response. You can use this pagination token to retrieve the next set of rescore execution plans.

MaxResults

The maximum number of rescore execution plans to return.

Value

A list with the following syntax:

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

Request syntax

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