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 |
NextToken |
The pagination token from a previous
|
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"
)