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