Class: Aws::IoTEvents::Types::SetVariableAction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoTEvents::Types::SetVariableAction
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iotevents/types.rb
 
Overview
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.
      2785 2786 2787 2788 2789 2790  | 
    
      # File 'lib/aws-sdk-iotevents/types.rb', line 2785 class SetVariableAction < Struct.new( :variable_name, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#variable_name ⇒ String
The name of the variable.
      2785 2786 2787 2788 2789 2790  | 
    
      # File 'lib/aws-sdk-iotevents/types.rb', line 2785 class SetVariableAction < Struct.new( :variable_name, :value) SENSITIVE = [] include Aws::Structure end  |