Class: Aws::IoTEvents::Types::SetVariableAction

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

Instance Attribute Details

#valueString

The new value of the variable.

Returns:

  • (String)


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_nameString

The name of the variable.

Returns:

  • (String)


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