Update Scheduling Policy
| batch_update_scheduling_policy | R Documentation |
Updates a scheduling policy¶
Description¶
Updates a scheduling policy.
Usage¶
batch_update_scheduling_policy(arn, quotaSharePolicy, fairsharePolicy)
Arguments¶
arn |
[required] The Amazon Resource Name (ARN) of the scheduling policy to update. |
quotaSharePolicy |
The quota share scheduling policy details. Once set during creation, a quotaSharePolicy cannot be removed or changed to a fairsharePolicy. |
fairsharePolicy |
The fair-share policy scheduling details. Once set during creation, a fairsharePolicy cannot be removed or changed to a quotaSharePolicy. |
Value¶
An empty list.
Request syntax¶
svc$update_scheduling_policy(
arn = "string",
quotaSharePolicy = list(
idleResourceAssignmentStrategy = "FIFO"
),
fairsharePolicy = list(
shareDecaySeconds = 123,
computeReservation = 123,
shareDistribution = list(
list(
shareIdentifier = "string",
weightFactor = 123.0
)
)
)
)