aws.sqs.get_queue_url
Example SQL Queries
SELECT * FROMaws.sqs.get_queue_urlWHERE"queue_name" = 'VALUE';Description
Returns the URL of an existing Amazon SQS queue.
To access a queue that belongs to another AWS account, use the QueueOwnerAWSAccountId parameter to specify the account ID of the queue's owner. The queue's owner must grant you permission to access the queue. For more information about shared queue access, see AddPermission or see Allow Developers to Write Messages to a Shared Queue in the Amazon SQS Developer Guide.
Table Definition
| Column Name | Column Data Type |
|---|---|
| queue_name Required Input Column The name of the queue whose URL must be fetched. Maximum 80 characters. Valid values: alphanumeric characters, hyphens (-), and underscores (_). Queue URLs and names are case-sensitive. | VARCHAR |
| queue_owner_aws_account_id Input Column The Amazon Web Services account ID of the account that created the queue. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| queue_url The URL of the queue. | VARCHAR |