class Amazonite::Sqs::SendMessageBatchResultEntry

Overview

Encloses a MessageId for a successfully-enqueued message in a SendMessageBatch.

Included Modules

Defined in:

sqs/send_message_batch_result_entry.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(id : String, message_id : String, md5_of_message_body : String, md5_of_message_attributes : String | Nil = nil, md5_of_message_system_attributes : String | Nil = nil, sequence_number : String | Nil = nil) #

[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 hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def id : String #

An identifier for the message in this batch.


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

An identifier for the message in this batch.


[View source]
def md5_of_message_attributes : String | Nil #

An MD5 digest of the non-URL-encoded message attribute string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see RFC1321.


[View source]
def md5_of_message_attributes=(md5_of_message_attributes : String | Nil) #

An MD5 digest of the non-URL-encoded message attribute string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see RFC1321.


[View source]
def md5_of_message_body : String #

An MD5 digest of the non-URL-encoded message body string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see RFC1321.


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

An MD5 digest of the non-URL-encoded message body string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see RFC1321.


[View source]
def md5_of_message_system_attributes : String | Nil #

An MD5 digest of the non-URL-encoded message system attribute string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see RFC1321.


[View source]
def md5_of_message_system_attributes=(md5_of_message_system_attributes : String | Nil) #

An MD5 digest of the non-URL-encoded message system attribute string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see RFC1321.


[View source]
def message_id : String #

An identifier for the message.


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

An identifier for the message.


[View source]
def sequence_number : String | Nil #

This parameter applies only to FIFO (first-in-first-out) queues.

The large, non-consecutive number that Amazon SQS assigns to each message.

The length of SequenceNumber is 128 bits. As SequenceNumber continues to increase for a particular MessageGroupId.


[View source]
def sequence_number=(sequence_number : String | Nil) #

This parameter applies only to FIFO (first-in-first-out) queues.

The large, non-consecutive number that Amazon SQS assigns to each message.

The length of SequenceNumber is 128 bits. As SequenceNumber continues to increase for a particular MessageGroupId.


[View source]
def validate! : Nil #

[View source]