Class: Aws::IoTEvents::Types::SqsAction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoTEvents::Types::SqsAction
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iotevents/types.rb
 
Overview
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #payload  ⇒ Types::Payload 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
You can configure the action payload when you send a message to an Amazon SQS queue.
 - 
  
    
      #queue_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL of the SQS queue where the data is written.
 - 
  
    
      #use_base_64  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue.
 
Instance Attribute Details
#payload ⇒ Types::Payload
You can configure the action payload when you send a message to an Amazon SQS queue.
      2834 2835 2836 2837 2838 2839 2840  | 
    
      # File 'lib/aws-sdk-iotevents/types.rb', line 2834 class SqsAction < Struct.new( :queue_url, :use_base_64, :payload) SENSITIVE = [] include Aws::Structure end  | 
  
#queue_url ⇒ String
The URL of the SQS queue where the data is written.
      2834 2835 2836 2837 2838 2839 2840  | 
    
      # File 'lib/aws-sdk-iotevents/types.rb', line 2834 class SqsAction < Struct.new( :queue_url, :use_base_64, :payload) SENSITIVE = [] include Aws::Structure end  | 
  
#use_base_64 ⇒ Boolean
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
      2834 2835 2836 2837 2838 2839 2840  | 
    
      # File 'lib/aws-sdk-iotevents/types.rb', line 2834 class SqsAction < Struct.new( :queue_url, :use_base_64, :payload) SENSITIVE = [] include Aws::Structure end  |