Class: Aws::SQS::Types::DeleteMessageBatchRequestEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::DeleteMessageBatchRequestEntry
- Defined in:
- gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb
Overview
Encloses a receipt handle and an identifier for it.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The identifier for this particular receipt handle.
-
#receipt_handle ⇒ String
A receipt handle.
Instance Attribute Details
#id ⇒ String
The identifier for this particular receipt handle. This is used to communicate the result.
Id
s of a batch request need to be unique within a request.
This identifier can have up to 80 characters. The following characters are accepted: alphanumeric characters, hyphens(-), and underscores (_).
586 587 588 589 590 591 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 586 class DeleteMessageBatchRequestEntry < Struct.new( :id, :receipt_handle) SENSITIVE = [] include Aws::Structure end |
#receipt_handle ⇒ String
A receipt handle.
586 587 588 589 590 591 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 586 class DeleteMessageBatchRequestEntry < Struct.new( :id, :receipt_handle) SENSITIVE = [] include Aws::Structure end |