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

Inherits:
Struct
  • Object
show all
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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

An identifier for this particular receipt handle used to communicate the result.

The Ids 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 (_).

Returns:

  • (String)


197
198
199
200
201
202
203
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 197

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

#receipt_handleString

A receipt handle.

Returns:

  • (String)


197
198
199
200
201
202
203
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 197

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

#visibility_timeoutInteger

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

Returns:

  • (Integer)


197
198
199
200
201
202
203
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 197

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