Class: Aws::SQS::Types::ChangeMessageVisibilityBatchRequestEntry

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sqs/types.rb

Overview

Note:

When making an API call, you may pass ChangeMessageVisibilityBatchRequestEntry data as a hash:

{
  id: "String", # required
  receipt_handle: "String", # required
  visibility_timeout: 1,
}

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`

Instance Attribute Summary collapse

Instance Attribute Details

#idString

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

</note>

Returns:

  • (String)


181
182
183
184
185
186
# File 'lib/aws-sdk-sqs/types.rb', line 181

class ChangeMessageVisibilityBatchRequestEntry < Struct.new(
  :id,
  :receipt_handle,
  :visibility_timeout)
  include Aws::Structure
end

#receipt_handleString

A receipt handle.

Returns:

  • (String)


181
182
183
184
185
186
# File 'lib/aws-sdk-sqs/types.rb', line 181

class ChangeMessageVisibilityBatchRequestEntry < Struct.new(
  :id,
  :receipt_handle,
  :visibility_timeout)
  include Aws::Structure
end

#visibility_timeoutInteger

The new value (in seconds) for the message’s visibility timeout.

Returns:

  • (Integer)


181
182
183
184
185
186
# File 'lib/aws-sdk-sqs/types.rb', line 181

class ChangeMessageVisibilityBatchRequestEntry < Struct.new(
  :id,
  :receipt_handle,
  :visibility_timeout)
  include Aws::Structure
end