Class: Aws::SQS::Types::ChangeMessageVisibilityBatchRequestEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::ChangeMessageVisibilityBatchRequestEntry
- Defined in:
- gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb
Overview
Encloses a receipt handle and an entry id for each message in
ChangeMessageVisibilityBatch.
All of the following list parameters must be prefixed with
ChangeMessageVisibilityBatchRequestEntry.n
, where n
is an integer
value starting with 1
. For example, a parameter list for this action
might look like this:
&ChangeMessageVisibilityBatchRequestEntry.1.Id=change_visibility_msg_2
&ChangeMessageVisibilityBatchRequestEntry.1.ReceiptHandle=your_receipt_handle
&ChangeMessageVisibilityBatchRequestEntry.1.VisibilityTimeout=45
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
An identifier for this particular receipt handle used to communicate the result.
-
#receipt_handle ⇒ String
A receipt handle.
-
#visibility_timeout ⇒ Integer
The new value (in seconds) for the message's visibility timeout.
Instance Attribute Details
#id ⇒ String
An identifier for this particular receipt handle 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 (_).
169 170 171 172 173 174 175 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 169 class ChangeMessageVisibilityBatchRequestEntry < Struct.new( :id, :receipt_handle, :visibility_timeout) SENSITIVE = [] include Aws::Structure end |
#receipt_handle ⇒ String
A receipt handle.
169 170 171 172 173 174 175 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 169 class ChangeMessageVisibilityBatchRequestEntry < Struct.new( :id, :receipt_handle, :visibility_timeout) SENSITIVE = [] include Aws::Structure end |
#visibility_timeout ⇒ Integer
The new value (in seconds) for the message's visibility timeout.
169 170 171 172 173 174 175 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 169 class ChangeMessageVisibilityBatchRequestEntry < Struct.new( :id, :receipt_handle, :visibility_timeout) SENSITIVE = [] include Aws::Structure end |