Class: Aws::SQS::Types::DeleteMessageBatchRequestEntry

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 DeleteMessageBatchRequestEntry data as a hash:

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

Encloses a receipt handle and an identifier for it.

Instance Attribute Summary collapse

Instance Attribute Details

#idString

An 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

</note>

Returns:

  • (String)


519
520
521
522
523
# File 'lib/aws-sdk-sqs/types.rb', line 519

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

#receipt_handleString

A receipt handle.

Returns:

  • (String)


519
520
521
522
523
# File 'lib/aws-sdk-sqs/types.rb', line 519

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