Describe Domain Change Progress
elasticsearchservice_describe_domain_change_progress | R Documentation |
Returns information about the current blue/green deployment happening on a domain, including a change ID, status, and progress stages¶
Description¶
Returns information about the current blue/green deployment happening on a domain, including a change ID, status, and progress stages.
Usage¶
elasticsearchservice_describe_domain_change_progress(DomainName,
ChangeId)
Arguments¶
DomainName |
[required] The domain you want to get the progress information about. |
ChangeId |
The specific change ID for which you want to get progress information. This is an optional parameter. If omitted, the service returns information about the most recent configuration change. |
Value¶
A list with the following syntax:
list(
ChangeProgressStatus = list(
ChangeId = "string",
StartTime = as.POSIXct(
"2015-01-01"
),
Status = "PENDING"|"PROCESSING"|"COMPLETED"|"FAILED",
PendingProperties = list(
"string"
),
CompletedProperties = list(
"string"
),
TotalNumberOfStages = 123,
ChangeProgressStages = list(
list(
Name = "string",
Status = "string",
Description = "string",
LastUpdated = as.POSIXct(
"2015-01-01"
)
)
),
ConfigChangeStatus = "Pending"|"Initializing"|"Validating"|"ValidationFailed"|"ApplyingChanges"|"Completed"|"PendingUserInput"|"Cancelled",
LastUpdatedTime = as.POSIXct(
"2015-01-01"
),
InitiatedBy = "CUSTOMER"|"SERVICE"
)
)
Request syntax¶
svc$describe_domain_change_progress(
DomainName = "string",
ChangeId = "string"
)