Class: Aws::IoTJobsDataPlane::Types::CommandParameterValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTJobsDataPlane::Types::CommandParameterValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotjobsdataplane/types.rb
Overview
The list of values used to describe a specific command parameter.
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`
59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/aws-sdk-iotjobsdataplane/types.rb', line 59 class CommandParameterValue < Struct.new( :s, :b, :i, :l, :d, :bin, :ul) SENSITIVE = [] include Aws::Structure end |
#bin ⇒ String
An attribute of type Binary.
59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/aws-sdk-iotjobsdataplane/types.rb', line 59 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).
59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/aws-sdk-iotjobsdataplane/types.rb', line 59 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).
59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/aws-sdk-iotjobsdataplane/types.rb', line 59 class CommandParameterValue < Struct.new( :s, :b, :i, :l, :d, :bin, :ul) SENSITIVE = [] include Aws::Structure end |
#l ⇒ Integer
An attribute of type Long.
59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/aws-sdk-iotjobsdataplane/types.rb', line 59 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”`
59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/aws-sdk-iotjobsdataplane/types.rb', line 59 class CommandParameterValue < Struct.new( :s, :b, :i, :l, :d, :bin, :ul) SENSITIVE = [] include Aws::Structure end |
#ul ⇒ String
An attribute of type Unsigned Long.
59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/aws-sdk-iotjobsdataplane/types.rb', line 59 class CommandParameterValue < Struct.new( :s, :b, :i, :l, :d, :bin, :ul) SENSITIVE = [] include Aws::Structure end |