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