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.
1840 1841 1842 1843 1844 1845 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1840 class IntegerRange < Struct.new( :maximum, :minimum) SENSITIVE = [] include Aws::Structure end |
#minimum ⇒ Integer
A minimum value.
1840 1841 1842 1843 1844 1845 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1840 class IntegerRange < Struct.new( :maximum, :minimum) SENSITIVE = [] include Aws::Structure end |