Class: Aws::IoT::Types::SqsAction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::SqsAction
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
Describes an action to publish data to an Amazon SQS queue.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #queue_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL of the Amazon SQS queue.
 - 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the IAM role that grants access.
 - 
  
    
      #use_base_64  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether to use Base64 encoding.
 
Instance Attribute Details
#queue_url ⇒ String
The URL of the Amazon SQS queue.
      13937 13938 13939 13940 13941 13942 13943  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 13937 class SqsAction < Struct.new( :role_arn, :queue_url, :use_base_64) SENSITIVE = [] include Aws::Structure end  |