interface QueueReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaConvert.QueueReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmediaconvert#QueueReference |
Java | software.amazon.awscdk.interfaces.mediaconvert.QueueReference |
Python | aws_cdk.interfaces.aws_mediaconvert.QueueReference |
TypeScript | aws-cdk-lib » interfaces » aws_mediaconvert » 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_mediaconvert as interfaces_aws_mediaconvert } from 'aws-cdk-lib/interfaces';
const queueReference: interfaces_aws_mediaconvert.QueueReference = {
queueArn: 'queueArn',
queueId: 'queueId',
};
Properties
| Name | Type | Description |
|---|---|---|
| queue | string | The ARN of the Queue resource. |
| queue | string | The Id of the Queue resource. |
queueArn
Type:
string
The ARN of the Queue resource.
queueId
Type:
string
The Id of the Queue resource.

.NET
Go
Java
Python
TypeScript