class Amazonite::Sqs::ChangeMessageVisibilityBatchRequestEntry

Overview

Encloses a receipt handle and an entry ID for each message in ChangeMessageVisibilityBatch.

Included Modules

Defined in:

sqs/change_message_visibility_batch_request_entry.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(id : String, receipt_handle : String, visibility_timeout : Int32 | Nil = nil) #

[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 #

An identifier for this particular receipt handle 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) #

An identifier for this particular receipt handle 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]
def visibility_timeout : Int32 | Nil #

The new value (in seconds) for the message's visibility timeout.


[View source]
def visibility_timeout=(visibility_timeout : Int32 | Nil) #

The new value (in seconds) for the message's visibility timeout.


[View source]