class Amazonite::Sqs::GetQueueUrlRequest

Overview

Retrieves the URL of an existing queue based on its name and, optionally, the Amazon Web Services account ID.

Included Modules

Defined in:

sqs/get_queue_url_request.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(queue_name : String, queue_owner_aws_account_id : String | Nil = nil) #

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

(Required) The name of the queue for which you want to fetch the URL. The name can be up to 80 characters long and can include alphanumeric characters, hyphens (-), and underscores (_). Queue URLs and names are case-sensitive.


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

(Required) The name of the queue for which you want to fetch the URL. The name can be up to 80 characters long and can include alphanumeric characters, hyphens (-), and underscores (_). Queue URLs and names are case-sensitive.


[View source]
def queue_owner_aws_account_id : String | Nil #

(Optional) The Amazon Web Services account ID of the account that created the queue. This is only required when you are attempting to access a queue owned by another Amazon Web Services account.


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

(Optional) The Amazon Web Services account ID of the account that created the queue. This is only required when you are attempting to access a queue owned by another Amazon Web Services account.


[View source]
def validate! : Nil #

[View source]