aws-cdk-lib.aws_mediaconvert.CfnQueueProps

interface CfnQueueProps

LanguageType name
.NETAmazon.CDK.AWS.MediaConvert.CfnQueueProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmediaconvert#CfnQueueProps
Javasoftware.amazon.awscdk.services.mediaconvert.CfnQueueProps
Pythonaws_cdk.aws_mediaconvert.CfnQueueProps
TypeScript aws-cdk-lib » 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 { aws_mediaconvert as mediaconvert } from 'aws-cdk-lib';

declare const tags: any;
const cfnQueueProps: mediaconvert.CfnQueueProps = {
  description: 'description',
  name: 'name',
  pricingPlan: 'pricingPlan',
  status: 'status',
  tags: tags,
};

Properties

NameTypeDescription
description?stringOptional.
name?stringThe name of the queue that you are creating.
pricingPlan?stringWhen you use AWS CloudFormation , you can create only on-demand queues.
status?stringInitial state of the queue.
tags?anyAn 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 .