Class: Aws::EKS::Types::IntegerConstraints

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

Overview

Constraints for an integer parameter specifying allowed range.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The maximum allowed value.

Returns:

  • (Integer)


5307
5308
5309
5310
5311
5312
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5307

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

#minInteger

The minimum allowed value.

Returns:

  • (Integer)


5307
5308
5309
5310
5311
5312
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5307

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