interface QueueReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SQS.QueueReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssqs#QueueReference |
Java | software.amazon.awscdk.interfaces.sqs.QueueReference |
Python | aws_cdk.interfaces.aws_sqs.QueueReference |
TypeScript | aws-cdk-lib » interfaces » aws_sqs » QueueReference |
A reference to a Queue resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sqs as interfaces_aws_sqs } from 'aws-cdk-lib/interfaces';
const queueReference: interfaces_aws_sqs.QueueReference = {
queueArn: 'queueArn',
queueUrl: 'queueUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| queue | string | The ARN of the Queue resource. |
| queue | string | The QueueUrl of the Queue resource. |
queueArn
Type:
string
The ARN of the Queue resource.
queueUrl
Type:
string
The QueueUrl of the Queue resource.

.NET
Go
Java
Python
TypeScript