Skip to content

Batch Delete Featured Results Set

kendra_batch_delete_featured_results_set R Documentation

Description

Removes one or more sets of featured results. Features results are placed above all other results for certain queries. If there's an exact match of a query, then one or more specific documents are featured in the search results.

Usage

kendra_batch_delete_featured_results_set(IndexId, FeaturedResultsSetIds)

Arguments

IndexId

[required] The identifier of the index used for featuring results.

FeaturedResultsSetIds

[required] The identifiers of the featured results sets that you want to delete.

Value

A list with the following syntax:

list(
  Errors = list(
    list(
      Id = "string",
      ErrorCode = "InternalError"|"InvalidRequest",
      ErrorMessage = "string"
    )
  )
)

Request syntax

svc$batch_delete_featured_results_set(
  IndexId = "string",
  FeaturedResultsSetIds = list(
    "string"
  )
)