Class: Aws::SQS::Types::DeleteMessageBatchRequestEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::DeleteMessageBatchRequestEntry
- Includes:
- Aws::Structure
- Defined in:
- 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.
<note markdown=“1”> The ‘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 (_).
</note>
583 584 585 586 587 588 |
# File 'lib/aws-sdk-sqs/types.rb', line 583 class DeleteMessageBatchRequestEntry < Struct.new( :id, :receipt_handle) SENSITIVE = [] include Aws::Structure end |
#receipt_handle ⇒ String
A receipt handle.
583 584 585 586 587 588 |
# File 'lib/aws-sdk-sqs/types.rb', line 583 class DeleteMessageBatchRequestEntry < Struct.new( :id, :receipt_handle) SENSITIVE = [] include Aws::Structure end |