class Amazonite::Sqs::DeleteMessageBatchRequestEntry

Overview

Encloses a receipt handle and an identifier for it.

Included Modules

Defined in:

sqs/delete_message_batch_request_entry.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(id : String, receipt_handle : String) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def id : String #

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


[View source]
def id=(id : String) #

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


[View source]
def receipt_handle : String #

A receipt handle.


[View source]
def receipt_handle=(receipt_handle : String) #

A receipt handle.


[View source]
def validate! : Nil #

[View source]