List Domain Maintenances
| opensearchservice_list_domain_maintenances | R Documentation |
A list of maintenance actions for the domain¶
Description¶
A list of maintenance actions for the domain.
Usage¶
Arguments¶
DomainName[required] The name of the domain.
ActionThe name of the action.
StatusThe status of the action.
MaxResultsAn optional parameter that specifies the maximum number of results to return. You can use
nextTokento get the next page of results.NextTokenIf your initial
list_domain_maintenancesoperation returns anextToken, include the returnednextTokenin subsequentlist_domain_maintenancesoperations, which returns results in the next page.
Value¶
A list with the following syntax:
list(
DomainMaintenances = list(
list(
MaintenanceId = "string",
DomainName = "string",
Action = "REBOOT_NODE"|"RESTART_SEARCH_PROCESS"|"RESTART_DASHBOARD",
NodeId = "string",
Status = "PENDING"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|"TIMED_OUT",
StatusMessage = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
UpdatedAt = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)