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.
14580 14581 14582 14583 14584 14585 14586 |
# File 'lib/aws-sdk-iot/types.rb', line 14580 class SqsAction < Struct.new( :role_arn, :queue_url, :use_base_64) SENSITIVE = [] include Aws::Structure end |