interface CfnQueueProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.MediaConvert.CfnQueueProps |
Java | software.amazon.awscdk.services.mediaconvert.CfnQueueProps |
Python | aws_cdk.aws_mediaconvert.CfnQueueProps |
TypeScript | @aws-cdk/aws-mediaconvert » CfnQueueProps |
Properties for defining a CfnQueue
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconvert from '@aws-cdk/aws-mediaconvert';
declare const tags: any;
const cfnQueueProps: mediaconvert.CfnQueueProps = {
description: 'description',
name: 'name',
pricingPlan: 'pricingPlan',
status: 'status',
tags: tags,
};
Properties
Name | Type | Description |
---|---|---|
description? | string | Optional. |
name? | string | The name of the queue that you are creating. |
pricing | string | When you use AWS 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. |
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 AWS 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 AWS 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 .