List Scheduled Actions
| opensearchservice_list_scheduled_actions | R Documentation |
Retrieves a list of configuration changes that are scheduled for a domain¶
Description¶
Retrieves a list of configuration changes that are scheduled for a domain. These changes can be service software updates or blue/green Auto-Tune enhancements.
Usage¶
Arguments¶
DomainName[required] The name of the domain.
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_scheduled_actionsoperation returns anextToken, you can include the returnednextTokenin subsequentlist_scheduled_actionsoperations, which returns results in the next page.
Value¶
A list with the following syntax:
list(
ScheduledActions = list(
list(
Id = "string",
Type = "SERVICE_SOFTWARE_UPDATE"|"JVM_HEAP_SIZE_TUNING"|"JVM_YOUNG_GEN_TUNING",
Severity = "HIGH"|"MEDIUM"|"LOW",
ScheduledTime = 123,
Description = "string",
ScheduledBy = "CUSTOMER"|"SYSTEM",
Status = "PENDING_UPDATE"|"IN_PROGRESS"|"FAILED"|"COMPLETED"|"NOT_ELIGIBLE"|"ELIGIBLE",
Mandatory = TRUE|FALSE,
Cancellable = TRUE|FALSE
)
),
NextToken = "string"
)