Class: Aws::EKS::Types::IntegerRangeConstraint

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

Overview

An integer range constraint specifying minimum and maximum allowed values.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The maximum allowed value.

Returns:

  • (Integer)


4919
4920
4921
4922
4923
4924
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4919

class IntegerRangeConstraint < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end

#minInteger

The minimum allowed value.

Returns:

  • (Integer)


4919
4920
4921
4922
4923
4924
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4919

class IntegerRangeConstraint < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end