Class: Aws::IoT::Types::CommandParameterValue

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb

Overview

The value of a command parameter used to create a command execution.

The commandParameterValue can only have one of the below fields listed.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bBoolean

An attribute of type Boolean. For example:

"BOOL": true

Returns:

  • (Boolean)


2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2418

class CommandParameterValue < Struct.new(
  :s,
  :b,
  :i,
  :l,
  :d,
  :bin,
  :ul)
  SENSITIVE = []
  include Aws::Structure
end

#binString

An attribute of type Binary. For example:

"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"

Returns:

  • (String)


2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2418

class CommandParameterValue < Struct.new(
  :s,
  :b,
  :i,
  :l,
  :d,
  :bin,
  :ul)
  SENSITIVE = []
  include Aws::Structure
end

#dFloat

An attribute of type Double (Sixty-Four Bits).

Returns:

  • (Float)


2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2418

class CommandParameterValue < Struct.new(
  :s,
  :b,
  :i,
  :l,
  :d,
  :bin,
  :ul)
  SENSITIVE = []
  include Aws::Structure
end

#iInteger

An attribute of type Integer (Thirty-Two Bits).

Returns:

  • (Integer)


2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2418

class CommandParameterValue < Struct.new(
  :s,
  :b,
  :i,
  :l,
  :d,
  :bin,
  :ul)
  SENSITIVE = []
  include Aws::Structure
end

#lInteger

An attribute of type Long.

Returns:

  • (Integer)


2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2418

class CommandParameterValue < Struct.new(
  :s,
  :b,
  :i,
  :l,
  :d,
  :bin,
  :ul)
  SENSITIVE = []
  include Aws::Structure
end

#sString

An attribute of type String. For example:

"S": "Hello"

Returns:

  • (String)


2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2418

class CommandParameterValue < Struct.new(
  :s,
  :b,
  :i,
  :l,
  :d,
  :bin,
  :ul)
  SENSITIVE = []
  include Aws::Structure
end

#ulString

An attribute of type unsigned long.

Returns:

  • (String)


2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2418

class CommandParameterValue < Struct.new(
  :s,
  :b,
  :i,
  :l,
  :d,
  :bin,
  :ul)
  SENSITIVE = []
  include Aws::Structure
end