Class: Aws::IoTEvents::Types::SetVariableAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::SetVariableAction
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass SetVariableAction data as a hash:
{
variable_name: "VariableName", # required
value: "VariableValue", # required
}
Information about the variable and its new value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#value ⇒ String
The new value of the variable.
-
#variable_name ⇒ String
The name of the variable.
Instance Attribute Details
#value ⇒ String
The new value of the variable.
3714 3715 3716 3717 3718 3719 |
# File 'lib/aws-sdk-iotevents/types.rb', line 3714 class SetVariableAction < Struct.new( :variable_name, :value) SENSITIVE = [] include Aws::Structure end |
#variable_name ⇒ String
The name of the variable.
3714 3715 3716 3717 3718 3719 |
# File 'lib/aws-sdk-iotevents/types.rb', line 3714 class SetVariableAction < Struct.new( :variable_name, :value) SENSITIVE = [] include Aws::Structure end |