Get Upgrade History
| elasticsearchservice_get_upgrade_history | R Documentation |
Retrieves the complete history of the last 10 upgrades that were performed on the domain¶
Description¶
Retrieves the complete history of the last 10 upgrades that were performed on the domain.
Usage¶
elasticsearchservice_get_upgrade_history(DomainName, MaxResults,
NextToken)
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). |
MaxResults |
Set this value to limit the number of results returned. |
NextToken |
Paginated APIs accepts NextToken input to returns next page results and provides a NextToken output in the response which can be used by the client to retrieve more results. |
Value¶
A list with the following syntax:
list(
UpgradeHistories = list(
list(
UpgradeName = "string",
StartTimestamp = as.POSIXct(
"2015-01-01"
),
UpgradeStatus = "IN_PROGRESS"|"SUCCEEDED"|"SUCCEEDED_WITH_ISSUES"|"FAILED",
StepsList = list(
list(
UpgradeStep = "PRE_UPGRADE_CHECK"|"SNAPSHOT"|"UPGRADE",
UpgradeStepStatus = "IN_PROGRESS"|"SUCCEEDED"|"SUCCEEDED_WITH_ISSUES"|"FAILED",
Issues = list(
"string"
),
ProgressPercent = 123.0
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$get_upgrade_history(
DomainName = "string",
MaxResults = 123,
NextToken = "string"
)