Class: Aws::PCS::Types::UpdateSchedulerRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::PCS::Types::UpdateSchedulerRequest
- Defined in:
- gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb
Overview
The scheduler configuration for updating a cluster. Use this to specify the scheduler version to update to.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#version ⇒ String
The scheduler version to update the cluster to.
Instance Attribute Details
#version ⇒ String
The scheduler version to update the cluster to. You can only update to a newer version. For more information about supported versions and update paths, see Updating the scheduler version on a cluster in the PCS User Guide.
Valid Values: 24.05 | 24.11 | 25.05 | 25.11 | 26.05
2791 2792 2793 2794 2795 |
# File 'gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb', line 2791 class UpdateSchedulerRequest < Struct.new( :version) SENSITIVE = [] include Aws::Structure end |