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

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

Overview

The range of possible values that’s used to describe a specific command parameter.

<note markdown=“1”> The ‘commandParameterValue` can only have one of the below fields listed.

</note>

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bBoolean

An attribute of type Boolean. For example:

‘“BOOL”: true`

Returns:

  • (Boolean)


2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
# File 'lib/aws-sdk-iot/types.rb', line 2362

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)


2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
# File 'lib/aws-sdk-iot/types.rb', line 2362

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)


2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
# File 'lib/aws-sdk-iot/types.rb', line 2362

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)


2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
# File 'lib/aws-sdk-iot/types.rb', line 2362

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

#lInteger

An attribute of type Long.

Returns:

  • (Integer)


2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
# File 'lib/aws-sdk-iot/types.rb', line 2362

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)


2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
# File 'lib/aws-sdk-iot/types.rb', line 2362

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)


2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
# File 'lib/aws-sdk-iot/types.rb', line 2362

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