Get Domain Maintenance Status
opensearchservice_get_domain_maintenance_status | R Documentation |
The status of the maintenance action¶
Description¶
The status of the maintenance action.
Usage¶
opensearchservice_get_domain_maintenance_status(DomainName,
MaintenanceId)
Arguments¶
DomainName |
[required] The name of the domain. |
MaintenanceId |
[required] The request ID of the maintenance action. |
Value¶
A list with the following syntax:
list(
Status = "PENDING"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|"TIMED_OUT",
StatusMessage = "string",
NodeId = "string",
Action = "REBOOT_NODE"|"RESTART_SEARCH_PROCESS"|"RESTART_DASHBOARD",
CreatedAt = as.POSIXct(
"2015-01-01"
),
UpdatedAt = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$get_domain_maintenance_status(
DomainName = "string",
MaintenanceId = "string"
)