Class: Aws::SQS::Types::ChangeMessageVisibilityBatchRequestEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::ChangeMessageVisibilityBatchRequestEntry
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sqs/types.rb
Overview
Encloses a receipt handle and an entry ID for each message in ‘ ChangeMessageVisibilityBatch.`
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.
<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>
197 198 199 200 201 202 203 |
# File 'lib/aws-sdk-sqs/types.rb', line 197 class ChangeMessageVisibilityBatchRequestEntry < Struct.new( :id, :receipt_handle, :visibility_timeout) SENSITIVE = [] include Aws::Structure end |
#receipt_handle ⇒ String
A receipt handle.
197 198 199 200 201 202 203 |
# File 'lib/aws-sdk-sqs/types.rb', line 197 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.
197 198 199 200 201 202 203 |
# File 'lib/aws-sdk-sqs/types.rb', line 197 class ChangeMessageVisibilityBatchRequestEntry < Struct.new( :id, :receipt_handle, :visibility_timeout) SENSITIVE = [] include Aws::Structure end |