Class: Aws::IoT::Types::CommandParameterValueCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CommandParameterValueCondition
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
A condition for the command parameter that must be evaluated to true for successful creation of a command execution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison_operator ⇒ String
The comparison operator for the command parameter.
-
#operand ⇒ Types::CommandParameterValueComparisonOperand
The comparison operand for the command parameter.
Instance Attribute Details
#comparison_operator ⇒ String
The comparison operator for the command parameter.
<note markdown=“1”> IN_RANGE, and NOT_IN_RANGE operators include boundary values.
</note>
2478 2479 2480 2481 2482 2483 |
# File 'lib/aws-sdk-iot/types.rb', line 2478 class CommandParameterValueCondition < Struct.new( :comparison_operator, :operand) SENSITIVE = [] include Aws::Structure end |
#operand ⇒ Types::CommandParameterValueComparisonOperand
The comparison operand for the command parameter.
2478 2479 2480 2481 2482 2483 |
# File 'lib/aws-sdk-iot/types.rb', line 2478 class CommandParameterValueCondition < Struct.new( :comparison_operator, :operand) SENSITIVE = [] include Aws::Structure end |