interface QueueReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.PCS.QueueReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awspcs#QueueReference |
Java | software.amazon.awscdk.interfaces.pcs.QueueReference |
Python | aws_cdk.interfaces.aws_pcs.QueueReference |
TypeScript | aws-cdk-lib » interfaces » aws_pcs » 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_pcs as interfaces_pcs } from 'aws-cdk-lib/interfaces';
const queueReference: interfaces_pcs.QueueReference = {
queueArn: 'queueArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| queue | string | The Arn of the Queue resource. |
queueArn
Type:
string
The Arn of the Queue resource.

.NET
Go
Java
Python
TypeScript