Class: Aws::IoT::Types::SqsAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::SqsAction
- Defined in:
- gems/aws-sdk-iot/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.
14348 14349 14350 14351 14352 14353 14354 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 14348 class SqsAction < Struct.new( :role_arn, :queue_url, :use_base_64) SENSITIVE = [] include Aws::Structure end |