Skip to content

Describe Domain Auto Tunes

elasticsearchservice_describe_domain_auto_tunes R Documentation

Provides scheduled Auto-Tune action details for the Elasticsearch domain, such as Auto-Tune action type, description, severity, and scheduled date

Description

Provides scheduled Auto-Tune action details for the Elasticsearch domain, such as Auto-Tune action type, description, severity, and scheduled date.

Usage

elasticsearchservice_describe_domain_auto_tunes(DomainName, MaxResults,
  NextToken)

Arguments

DomainName

[required] Specifies the domain name for which you want Auto-Tune action details.

MaxResults

Set this value to limit the number of results returned. If not specified, defaults to 100.

NextToken

NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.

Value

A list with the following syntax:

list(
  AutoTunes = list(
    list(
      AutoTuneType = "SCHEDULED_ACTION",
      AutoTuneDetails = list(
        ScheduledAutoTuneDetails = list(
          Date = as.POSIXct(
            "2015-01-01"
          ),
          ActionType = "JVM_HEAP_SIZE_TUNING"|"JVM_YOUNG_GEN_TUNING",
          Action = "string",
          Severity = "LOW"|"MEDIUM"|"HIGH"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_domain_auto_tunes(
  DomainName = "string",
  MaxResults = 123,
  NextToken = "string"
)