class Amazonite::Sqs::SendMessageBatchResult

Overview

For each message in the batch, the response contains a SendMessageBatchResultEntry tag if the message succeeds or a BatchResultErrorEntry tag if the message fails.

Included Modules

Defined in:

sqs/send_message_batch_result.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(successful : Array(SendMessageBatchResultEntry), failed : Array(BatchResultErrorEntry)) #

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

[View source]
def self.new(*, __pull_for_json_serializable 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 failed : Array(BatchResultErrorEntry) #

A list of BatchResultErrorEntry items with error details about each message that can't be enqueued.


[View source]
def failed=(failed : Array(BatchResultErrorEntry)) #

A list of BatchResultErrorEntry items with error details about each message that can't be enqueued.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def successful : Array(SendMessageBatchResultEntry) #

A list of SendMessageBatchResultEntry items.


[View source]
def successful=(successful : Array(SendMessageBatchResultEntry)) #

A list of SendMessageBatchResultEntry items.


[View source]
def validate! : Nil #

[View source]