Class: Aws::IoT::Types::CommandParameterValueNumberRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CommandParameterValueNumberRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The numerical range value type to compare a command parameter value against.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ String
The maximum value of a numerical range of a command parameter value.
-
#min ⇒ String
The minimum value of a numerical range of a command parameter value.
Instance Attribute Details
#max ⇒ String
The maximum value of a numerical range of a command parameter value.
2496 2497 2498 2499 2500 2501 |
# File 'lib/aws-sdk-iot/types.rb', line 2496 class CommandParameterValueNumberRange < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ String
The minimum value of a numerical range of a command parameter value.
2496 2497 2498 2499 2500 2501 |
# File 'lib/aws-sdk-iot/types.rb', line 2496 class CommandParameterValueNumberRange < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |