Class: Aws::EKS::Types::NodegroupUpdateConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb

Overview

The node group update configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_unavailableInteger

The maximum number of nodes unavailable at once during a version update. Nodes are updated in parallel. This value or maxUnavailablePercentage is required to have a value.The maximum number is 100.

Returns:

  • (Integer)


4698
4699
4700
4701
4702
4703
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4698

class NodegroupUpdateConfig < Struct.new(
  :max_unavailable,
  :max_unavailable_percentage)
  SENSITIVE = []
  include Aws::Structure
end

#max_unavailable_percentageInteger

The maximum percentage of nodes unavailable during a version update. This percentage of nodes are updated in parallel, up to 100 nodes at once. This value or maxUnavailable is required to have a value.

Returns:

  • (Integer)


4698
4699
4700
4701
4702
4703
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4698

class NodegroupUpdateConfig < Struct.new(
  :max_unavailable,
  :max_unavailable_percentage)
  SENSITIVE = []
  include Aws::Structure
end