AWS MediaConvert Queue

This page shows how to write Terraform and CloudFormation for MediaConvert Queue and write them securely.

aws_media_convert_queue (Terraform)

The Queue in MediaConvert can be configured in Terraform with the resource name aws_media_convert_queue. The following sections describe 3 examples of how to use the resource and its parameters.

Example Usage from GitHub

aws_media_convert_queue.test.tf#L1
resource "aws_media_convert_queue" "test" {
  name         = var.queue["name"]
  pricing_plan = var.queue["pricing_plan"]
  status       = var.queue["status"]
}
main.tf#L7
resource "aws_media_convert_queue" "this" {
  description  = var.description
  name         = var.name
  pricing_plan = var.pricing_plan
  status       = var.status
  tags         = var.tags
main.tf#L3
resource "aws_media_convert_queue" "test" {
  name = var.name
}

// AWS Media Package

Review your Terraform file for AWS best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Provides an AWS Elemental MediaConvert Queue.

AWS::MediaConvert::Queue (CloudFormation)

The Queue in MediaConvert can be configured in CloudFormation with the resource name AWS::MediaConvert::Queue. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Parameters

Explanation in CloudFormation Registry

The AWS::MediaConvert::Queue resource is an AWS Elemental MediaConvert resource type that you can use to manage the resources that are available to your account for parallel processing of jobs. For more information about queues, see Working with AWS Elemental MediaConvert Queues in the AWS Elemental MediaConvert User Guide.

Frequently asked questions

What is AWS MediaConvert Queue?

AWS MediaConvert Queue is a resource for MediaConvert of Amazon Web Service. Settings can be wrote in Terraform and CloudFormation.

Where can I find the example code for the AWS MediaConvert Queue?

For Terraform, the JamesWoolfenden/terraform-aws-media-convert-queue, niveklabs/aws and gauravgitdir/Jack source code examples are useful. See the Terraform Example section for further details.