CfnQueueProps

class aws_cdk.aws_mediaconvert.CfnQueueProps(*, description=None, name=None, pricing_plan=None, status=None, tags=None)

Bases: object

Properties for defining a CfnQueue.

Parameters:
  • description (Optional[str]) – Optional. A description of the queue that you are creating.

  • name (Optional[str]) – The name of the queue that you are creating.

  • pricing_plan (Optional[str]) – 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 (Optional[str]) – 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 (Optional[Any]) – An array of key-value pairs to apply to this resource. For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_mediaconvert as mediaconvert

# tags: Any

cfn_queue_props = mediaconvert.CfnQueueProps(
    description="description",
    name="name",
    pricing_plan="pricingPlan",
    status="status",
    tags=tags
)

Attributes

description

Optional.

A description of the queue that you are creating.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description

name

The name of the queue that you are creating.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name

pricing_plan

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 ** .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan

status

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status

tags

An array of key-value pairs to apply to this resource.

For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags