Skip to content

Cancel Domain Config Change

opensearchservice_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

opensearchservice_cancel_domain_config_change(DomainName, DryRun)

Arguments

DomainName

[required] The name of an OpenSearch Service domain. Domain names are unique across the domains owned by an account within an Amazon Web Services Region.

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(
  CancelledChangeIds = list(
    "string"
  ),
  CancelledChangeProperties = list(
    list(
      PropertyName = "string",
      CancelledValue = "string",
      ActiveValue = "string"
    )
  ),
  DryRun = TRUE|FALSE
)

Request syntax

svc$cancel_domain_config_change(
  DomainName = "string",
  DryRun = TRUE|FALSE
)