Class: Aws::IoT::Types::CommandParameterValueNumberRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CommandParameterValueNumberRange
- Defined in:
- gems/aws-sdk-iot/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.
2470 2471 2472 2473 2474 2475 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2470 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.
2470 2471 2472 2473 2474 2475 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2470 class CommandParameterValueNumberRange < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |