Update Scheduled Action
opensearchservice_update_scheduled_action | R Documentation |
Reschedules a planned domain configuration change for a later time¶
Description¶
Reschedules a planned domain configuration change for a later time. This change can be a scheduled service software update or a blue/green Auto-Tune enhancement.
Usage¶
opensearchservice_update_scheduled_action(DomainName, ActionID,
ActionType, ScheduleAt, DesiredStartTime)
Arguments¶
DomainName |
[required] The name of the domain to reschedule an action for. |
ActionID |
[required] The unique identifier of the action to reschedule. To
retrieve this ID, send a |
ActionType |
[required] The type of action to reschedule. Can be one of
|
ScheduleAt |
[required] When to schedule the action.
|
DesiredStartTime |
The time to implement the change, in Coordinated Universal Time
(UTC). Only specify this parameter if you set |
Value¶
A list with the following syntax:
list(
ScheduledAction = 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
)
)
Request syntax¶
svc$update_scheduled_action(
DomainName = "string",
ActionID = "string",
ActionType = "SERVICE_SOFTWARE_UPDATE"|"JVM_HEAP_SIZE_TUNING"|"JVM_YOUNG_GEN_TUNING",
ScheduleAt = "NOW"|"TIMESTAMP"|"OFF_PEAK_WINDOW",
DesiredStartTime = 123
)