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 value of a command parameter used to create a command execution.
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
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 |
#bin ⇒ String
An attribute of type Binary. For example:
"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"
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 |
#d ⇒ Float
An attribute of type Double (Sixty-Four Bits).
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 |
#i ⇒ Integer
An attribute of type Integer (Thirty-Two Bits).
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 |
#l ⇒ Integer
An attribute of type Long.
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 |
#s ⇒ String
An attribute of type String. For example:
"S": "Hello"
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 |
#ul ⇒ String
An attribute of type unsigned long.
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 |