Update Index Type
| resourceexplorer_update_index_type | R Documentation |
Changes the type of the index from one of the following types to the other¶
Description¶
Changes the type of the index from one of the following types to the other. For more information about indexes and the role they perform in Amazon Web Services Resource Explorer, see Turning on cross-Region search by creating an aggregator index in the Amazon Web Services Resource Explorer User Guide.
AGGREGATORindex type
The index contains information about resources from all Amazon Web Services Regions in the Amazon Web Services account in which you've created a Resource Explorer index. Resource information from all other Regions is replicated to this Region's index.
When you change the index type to AGGREGATOR, Resource Explorer
turns on replication of all discovered resource information from the
other Amazon Web Services Regions in your account to this index. You
can then, from this Region only, perform resource search queries that
span all Amazon Web Services Regions in the Amazon Web Services
account. Turning on replication from all other Regions is performed by
asynchronous background tasks. You can check the status of the
asynchronous tasks by using the get_index operation. When the
asynchronous tasks complete, the Status response of that operation
changes from UPDATING to ACTIVE. After that, you can start to see
results from other Amazon Web Services Regions in query results.
However, it can take several hours for replication from all other
Regions to complete.
You can have only one aggregator index per Amazon Web Services
account. Before you can promote a different index to be the aggregator
index for the account, you must first demote the existing aggregator
index to type LOCAL.
LOCALindex type
The index contains information about resources in only the Amazon Web Services Region in which the index exists. If an aggregator index in another Region exists, then information in this local index is replicated to the aggregator index.
When you change the index type to LOCAL, Resource Explorer turns off
the replication of resource information from all other Amazon Web
Services Regions in the Amazon Web Services account to this Region.
The aggregator index remains in the UPDATING state until all
replication with other Regions successfully stops. You can check the
status of the asynchronous task by using the get_index operation.
When Resource Explorer successfully stops all replication with other
Regions, the Status response of that operation changes from
UPDATING to ACTIVE. Separately, the resource information from
other Regions that was previously stored in the index is deleted
within 30 days by another background task. Until that asynchronous
task completes, some results from other Regions can continue to appear
in search results.
After you demote an aggregator index to a local index, you must wait 24 hours before you can promote another index to be the new aggregator index for the account.
Usage¶
resourceexplorer_update_index_type(Arn, Type)
Arguments¶
Arn |
[required] The Amazon resource name (ARN) of the index that you want to update. |
Type |
[required] The type of the index. To understand the difference
between |
Value¶
A list with the following syntax:
list(
Arn = "string",
Type = "LOCAL"|"AGGREGATOR",
State = "CREATING"|"ACTIVE"|"DELETING"|"DELETED"|"UPDATING",
LastUpdatedAt = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$update_index_type(
Arn = "string",
Type = "LOCAL"|"AGGREGATOR"
)