Class: Aws::IoTEventsData::Types::VariableDefinition

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

Overview

Note:

When making an API call, you may pass VariableDefinition data as a hash:

{
  name: "VariableName", # required
  value: "VariableValue", # required
}

The new value of the variable.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the variable.

Returns:

  • (String)


1634
1635
1636
1637
1638
1639
# File 'lib/aws-sdk-ioteventsdata/types.rb', line 1634

class VariableDefinition < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The new value of the variable.

Returns:

  • (String)


1634
1635
1636
1637
1638
1639
# File 'lib/aws-sdk-ioteventsdata/types.rb', line 1634

class VariableDefinition < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end