Skip to content

Get Upgrade Status

elasticsearchservice_get_upgrade_status R Documentation

Retrieves the latest status of the last upgrade or upgrade eligibility check that was performed on the domain

Description

Retrieves the latest status of the last upgrade or upgrade eligibility check that was performed on the domain.

Usage

elasticsearchservice_get_upgrade_status(DomainName)

Arguments

DomainName

[required] The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

Value

A list with the following syntax:

list(
  UpgradeStep = "PRE_UPGRADE_CHECK"|"SNAPSHOT"|"UPGRADE",
  StepStatus = "IN_PROGRESS"|"SUCCEEDED"|"SUCCEEDED_WITH_ISSUES"|"FAILED",
  UpgradeName = "string"
)

Request syntax

svc$get_upgrade_status(
  DomainName = "string"
)