Class: Aws::IoTEventsData::Types::VariableDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEventsData::Types::VariableDefinition
- 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
-
#name ⇒ String
The name of the variable.
-
#value ⇒ String
The new value of the variable.
Instance Attribute Details
#name ⇒ String
The name of the variable.
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 |
#value ⇒ String
The new value of the variable.
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 |