Class: Aws::IoT::Types::CommandExecutionResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CommandExecutionResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The result value of the command execution. The device can use the result field to share additional details about the execution such as a return value of a remote function call.
<note markdown=“1”> This field is not applicable if you use the ‘AWS-IoT-FleetWise` namespace.
</note>
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#b ⇒ Boolean
An attribute of type Boolean.
-
#bin ⇒ String
An attribute of type Binary.
-
#s ⇒ String
An attribute of type String.
Instance Attribute Details
#b ⇒ Boolean
An attribute of type Boolean. For example:
‘“BOOL”: true`
2235 2236 2237 2238 2239 2240 2241 |
# File 'lib/aws-sdk-iot/types.rb', line 2235 class CommandExecutionResult < Struct.new( :s, :b, :bin) SENSITIVE = [] include Aws::Structure end |
#bin ⇒ String
An attribute of type Binary.
2235 2236 2237 2238 2239 2240 2241 |
# File 'lib/aws-sdk-iot/types.rb', line 2235 class CommandExecutionResult < Struct.new( :s, :b, :bin) SENSITIVE = [] include Aws::Structure end |
#s ⇒ String
An attribute of type String. For example:
‘“S”: “Hello”`
2235 2236 2237 2238 2239 2240 2241 |
# File 'lib/aws-sdk-iot/types.rb', line 2235 class CommandExecutionResult < Struct.new( :s, :b, :bin) SENSITIVE = [] include Aws::Structure end |