Class: Aws::GroundStation::Types::IntegerRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::IntegerRange
- Defined in:
- gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb
Overview
An integer range that has a minimum and maximum value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum ⇒ Integer
A maximum value.
-
#minimum ⇒ Integer
A minimum value.
Instance Attribute Details
#maximum ⇒ Integer
A maximum value.
2189 2190 2191 2192 2193 2194 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 2189 class IntegerRange < Struct.new( :minimum, :maximum) SENSITIVE = [] include Aws::Structure end |
#minimum ⇒ Integer
A minimum value.
2189 2190 2191 2192 2193 2194 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 2189 class IntegerRange < Struct.new( :minimum, :maximum) SENSITIVE = [] include Aws::Structure end |