Cancel Domain Config Change
elasticsearchservice_cancel_domain_config_change | R Documentation |
Cancels a pending configuration change on an Amazon OpenSearch Service domain¶
Description¶
Cancels a pending configuration change on an Amazon OpenSearch Service domain.
Usage¶
elasticsearchservice_cancel_domain_config_change(DomainName, DryRun)
Arguments¶
DomainName |
[required] Name of the OpenSearch Service domain configuration request to cancel. |
DryRun |
When set to True, returns the list of change IDs and properties that will be cancelled without actually cancelling the change. |
Value¶
A list with the following syntax:
list(
DryRun = TRUE|FALSE,
CancelledChangeIds = list(
"string"
),
CancelledChangeProperties = list(
list(
PropertyName = "string",
CancelledValue = "string",
ActiveValue = "string"
)
)
)
Request syntax¶
svc$cancel_domain_config_change(
DomainName = "string",
DryRun = TRUE|FALSE
)