Class: Aws::SQS::Types::SendMessageBatchRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::SendMessageBatchRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sqs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entries ⇒ Array<Types::SendMessageBatchRequestEntry>
A list of ‘ SendMessageBatchRequestEntry ` items.
-
#queue_url ⇒ String
The URL of the Amazon SQS queue to which batched messages are sent.
Instance Attribute Details
#entries ⇒ Array<Types::SendMessageBatchRequestEntry>
A list of ‘ SendMessageBatchRequestEntry ` items.
1970 1971 1972 1973 1974 1975 |
# File 'lib/aws-sdk-sqs/types.rb', line 1970 class SendMessageBatchRequest < Struct.new( :queue_url, :entries) SENSITIVE = [] include Aws::Structure end |
#queue_url ⇒ String
The URL of the Amazon SQS queue to which batched messages are sent.
Queue URLs and names are case-sensitive.
1970 1971 1972 1973 1974 1975 |
# File 'lib/aws-sdk-sqs/types.rb', line 1970 class SendMessageBatchRequest < Struct.new( :queue_url, :entries) SENSITIVE = [] include Aws::Structure end |