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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


5303
5304
5305
5306
5307
5308
# File 'lib/aws-sdk-eks/types.rb', line 5303

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

#minInteger

The minimum allowed value.

Returns:

  • (Integer)


5303
5304
5305
5306
5307
5308
# File 'lib/aws-sdk-eks/types.rb', line 5303

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