Class: Aws::EKS::Types::IntegerConstraints
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::IntegerConstraints
- 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
-
#max ⇒ Integer
The maximum allowed value.
-
#min ⇒ Integer
The minimum allowed value.
Instance Attribute Details
#max ⇒ Integer
The maximum allowed value.
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 |
#min ⇒ Integer
The minimum allowed value.
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 |