You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DeleteMessageBatchRequestEntry as input to an Aws::Client method, you can use a vanilla 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.

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)

    An identifier for this particular receipt handle.

#receipt_handleString

A receipt handle.

Returns:

  • (String)

    A receipt handle.