class Amazonite::Sqs::ChangeMessageVisibilityRequest

Included Modules

Defined in:

sqs/change_message_visibility_request.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(queue_url : String, receipt_handle : String, visibility_timeout : Int32) #

[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 queue_url : String #

The URL of the Amazon SQS queue whose message's visibility is changed.

Queue URLs and names are case-sensitive.


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

The URL of the Amazon SQS queue whose message's visibility is changed.

Queue URLs and names are case-sensitive.


[View source]
def receipt_handle : String #

The receipt handle associated with the message, whose visibility timeout is changed. This parameter is returned by the ReceiveMessage action.


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

The receipt handle associated with the message, whose visibility timeout is changed. This parameter is returned by the ReceiveMessage action.


[View source]
def validate! : Nil #

[View source]
def visibility_timeout : Int32 #

The new value for the message's visibility timeout (in seconds). Values range: 0 to 43200. Maximum: 12 hours.


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

The new value for the message's visibility timeout (in seconds). Values range: 0 to 43200. Maximum: 12 hours.


[View source]