Skip to content

Describe Rescore Execution Plan

kendraranking_describe_rescore_execution_plan R Documentation

Gets information about a rescore execution plan

Description

Gets information about a rescore execution plan. A rescore execution plan is an Amazon Kendra Intelligent Ranking resource used for provisioning the rescore API.

Usage

kendraranking_describe_rescore_execution_plan(Id)

Arguments

Id

[required] The identifier of the rescore execution plan that you want to get information on.

Value

A list with the following syntax:

list(
  Id = "string",
  Arn = "string",
  Name = "string",
  Description = "string",
  CapacityUnits = list(
    RescoreCapacityUnits = 123
  ),
  CreatedAt = as.POSIXct(
    "2015-01-01"
  ),
  UpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  Status = "CREATING"|"UPDATING"|"ACTIVE"|"DELETING"|"FAILED",
  ErrorMessage = "string"
)

Request syntax

svc$describe_rescore_execution_plan(
  Id = "string"
)