Class: Aws::IoTJobsDataPlane::Types::CommandParameterValue

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#bBoolean

An attribute of type Boolean. For example:

‘“BOOL”: true`

Returns:

  • (Boolean)


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

#binString

An attribute of type Binary.

Returns:

  • (String)


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

#dFloat

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

Returns:

  • (Float)


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

#iInteger

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

Returns:

  • (Integer)


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

#lInteger

An attribute of type Long.

Returns:

  • (Integer)


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

#sString

An attribute of type String. For example:

‘“S”: “Hello”`

Returns:

  • (String)


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

#ulString

An attribute of type Unsigned Long.

Returns:

  • (String)


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