Class: Aws::IoT::Types::SqsAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::SqsAction
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass SqsAction data as a hash:
{
role_arn: "AwsArn", # required
queue_url: "QueueUrl", # required
use_base_64: false,
}
Describes an action to publish data to an Amazon SQS queue.
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.
9418 9419 9420 9421 9422 9423 |
# File 'lib/aws-sdk-iot/types.rb', line 9418 class SqsAction < Struct.new( :role_arn, :queue_url, :use_base_64) include Aws::Structure end |
#role_arn ⇒ String
The ARN of the IAM role that grants access.
9418 9419 9420 9421 9422 9423 |
# File 'lib/aws-sdk-iot/types.rb', line 9418 class SqsAction < Struct.new( :role_arn, :queue_url, :use_base_64) include Aws::Structure end |
#use_base_64 ⇒ Boolean
Specifies whether to use Base64 encoding.
9418 9419 9420 9421 9422 9423 |
# File 'lib/aws-sdk-iot/types.rb', line 9418 class SqsAction < Struct.new( :role_arn, :queue_url, :use_base_64) include Aws::Structure end |