Class: Aws::IoT::Types::CommandExecutionResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CommandExecutionResult
- Defined in:
- gems/aws-sdk-iot/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.
AWS-IoT-FleetWise
namespace.
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 'gems/aws-sdk-iot/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 'gems/aws-sdk-iot/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 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2235 class CommandExecutionResult < Struct.new( :s, :b, :bin) SENSITIVE = [] include Aws::Structure end |