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

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

Overview

Encloses a receipt handle and an identifier for it.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The 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)


586
587
588
589
590
591
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 586

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

#receipt_handleString

A receipt handle.

Returns:

  • (String)


586
587
588
589
590
591
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 586

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