interface CfnQueueProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConvert.CfnQueueProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconvert#CfnQueueProps |
Java | software.amazon.awscdk.services.mediaconvert.CfnQueueProps |
Python | aws_cdk.aws_mediaconvert.CfnQueueProps |
TypeScript | aws-cdk-lib » aws_mediaconvert » CfnQueueProps |
Properties for defining a CfnQueue.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconvert as mediaconvert } from 'aws-cdk-lib';
declare const tags: any;
const cfnQueueProps: mediaconvert.CfnQueueProps = {
concurrentJobs: 123,
description: 'description',
name: 'name',
pricingPlan: 'pricingPlan',
status: 'status',
tags: tags,
};
Properties
| Name | Type | Description |
|---|---|---|
| concurrent | number | Specify the maximum number of jobs your queue can process concurrently. |
| description? | string | Optional. |
| name? | string | The name of the queue that you are creating. |
| pricing | string | When you use CloudFormation , you can create only on-demand queues. |
| status? | string | Initial state of the queue. |
| tags? | any | An array of key-value pairs to apply to this resource. |
concurrentJobs?
Type:
number
(optional)
Specify the maximum number of jobs your queue can process concurrently.
For on-demand queues, the value you enter is constrained by your service quotas for Maximum concurrent jobs, per on-demand queue and Maximum concurrent jobs, per account. For reserved queues, specify the number of jobs you can process concurrently in your reservation plan instead.
description?
Type:
string
(optional)
Optional.
A description of the queue that you are creating.
name?
Type:
string
(optional)
The name of the queue that you are creating.
pricingPlan?
Type:
string
(optional)
When you use CloudFormation , you can create only on-demand queues.
Therefore, always set PricingPlan to the value "ON_DEMAND" when declaring an AWS::MediaConvert::Queue in your CloudFormation template.
To create a reserved queue, use the AWS Elemental MediaConvert console at https://console.aws.amazon.com/mediaconvert to set up a contract. For more information, see Working with AWS Elemental MediaConvert Queues in the ** .
status?
Type:
string
(optional)
Initial state of the queue.
Queues can be either ACTIVE or PAUSED. If you create a paused queue, then jobs that you send to that queue won't begin.
tags?
Type:
any
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript