Class: Aws::IoT::Types::CommandParameterValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CommandParameterValue
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
The range of possible values that's used to describe a specific command parameter.
commandParameterValue
can only have one of the below fields
listed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#b ⇒ Boolean
An attribute of type Boolean.
-
#bin ⇒ String
An attribute of type Binary.
-
#d ⇒ Float
An attribute of type Double (Sixty-Four Bits).
-
#i ⇒ Integer
An attribute of type Integer (Thirty-Two Bits).
-
#l ⇒ Integer
An attribute of type Long.
-
#s ⇒ String
An attribute of type String.
-
#ul ⇒ String
An attribute of type unsigned long.
Instance Attribute Details
#b ⇒ Boolean
An attribute of type Boolean. For example:
"BOOL": true
2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2362 class CommandParameterValue < Struct.new( :s, :b, :i, :l, :d, :bin, :ul) SENSITIVE = [] include Aws::Structure end |
#bin ⇒ String
An attribute of type Binary. For example:
"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"
2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2362 class CommandParameterValue < Struct.new( :s, :b, :i, :l, :d, :bin, :ul) SENSITIVE = [] include Aws::Structure end |
#d ⇒ Float
An attribute of type Double (Sixty-Four Bits).
2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2362 class CommandParameterValue < Struct.new( :s, :b, :i, :l, :d, :bin, :ul) SENSITIVE = [] include Aws::Structure end |
#i ⇒ Integer
An attribute of type Integer (Thirty-Two Bits).
2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2362 class CommandParameterValue < Struct.new( :s, :b, :i, :l, :d, :bin, :ul) SENSITIVE = [] include Aws::Structure end |
#l ⇒ Integer
An attribute of type Long.
2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2362 class CommandParameterValue < Struct.new( :s, :b, :i, :l, :d, :bin, :ul) SENSITIVE = [] include Aws::Structure end |
#s ⇒ String
An attribute of type String. For example:
"S": "Hello"
2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2362 class CommandParameterValue < Struct.new( :s, :b, :i, :l, :d, :bin, :ul) SENSITIVE = [] include Aws::Structure end |
#ul ⇒ String
An attribute of type unsigned long.
2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2362 class CommandParameterValue < Struct.new( :s, :b, :i, :l, :d, :bin, :ul) SENSITIVE = [] include Aws::Structure end |