Skip to content

List Service Indexes

resourceexplorer_list_service_indexes R Documentation

Lists all Resource Explorer indexes across the specified Amazon Web Services Regions

Description

Lists all Resource Explorer indexes across the specified Amazon Web Services Regions. This operation returns information about indexes including their ARNs, types, and Regions.

Usage

resourceexplorer_list_service_indexes(Regions, MaxResults, NextToken)

Arguments

Regions

A list of Amazon Web Services Regions to include in the search for indexes. If not specified, indexes from all Regions are returned.

MaxResults

The maximum number of index results to return in a single response. Valid values are between 1 and 100.

NextToken

The pagination token from a previous list_service_indexes response. Use this token to retrieve the next set of results.

Value

A list with the following syntax:

list(
  Indexes = list(
    list(
      Region = "string",
      Arn = "string",
      Type = "LOCAL"|"AGGREGATOR"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_service_indexes(
  Regions = list(
    "string"
  ),
  MaxResults = 123,
  NextToken = "string"
)