interface QueueReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Deadline.QueueReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdeadline#QueueReference |
Java | software.amazon.awscdk.interfaces.deadline.QueueReference |
Python | aws_cdk.interfaces.aws_deadline.QueueReference |
TypeScript | aws-cdk-lib » interfaces » aws_deadline » 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_deadline as interfaces_aws_deadline } from 'aws-cdk-lib/interfaces';
const queueReference: interfaces_aws_deadline.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