Class: Aws::IoT::Types::CommandExecutionResult

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#bBoolean

An attribute of type Boolean. For example:

‘“BOOL”: true`

Returns:

  • (Boolean)


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

#binString

An attribute of type Binary.

Returns:

  • (String)


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

#sString

An attribute of type String. For example:

‘“S”: “Hello”`

Returns:

  • (String)


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