aws.mediaconvert.Queue
Provides an AWS Elemental MediaConvert Queue.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.mediaconvert.Queue("test", {name: "tf-test-queue"});
import pulumi
import pulumi_aws as aws
test = aws.mediaconvert.Queue("test", name="tf-test-queue")
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/mediaconvert"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mediaconvert.NewQueue(ctx, "test", &mediaconvert.QueueArgs{
			Name: pulumi.String("tf-test-queue"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() => 
{
    var test = new Aws.MediaConvert.Queue("test", new()
    {
        Name = "tf-test-queue",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.mediaconvert.Queue;
import com.pulumi.aws.mediaconvert.QueueArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var test = new Queue("test", QueueArgs.builder()
            .name("tf-test-queue")
            .build());
    }
}
resources:
  test:
    type: aws:mediaconvert:Queue
    properties:
      name: tf-test-queue
Create Queue Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Queue(name: string, args?: QueueArgs, opts?: CustomResourceOptions);@overload
def Queue(resource_name: str,
          args: Optional[QueueArgs] = None,
          opts: Optional[ResourceOptions] = None)
@overload
def Queue(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          concurrent_jobs: Optional[int] = None,
          description: Optional[str] = None,
          name: Optional[str] = None,
          pricing_plan: Optional[str] = None,
          region: Optional[str] = None,
          reservation_plan_settings: Optional[QueueReservationPlanSettingsArgs] = None,
          status: Optional[str] = None,
          tags: Optional[Mapping[str, str]] = None)func NewQueue(ctx *Context, name string, args *QueueArgs, opts ...ResourceOption) (*Queue, error)public Queue(string name, QueueArgs? args = null, CustomResourceOptions? opts = null)type: aws:mediaconvert:Queue
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args QueueArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args QueueArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args QueueArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args QueueArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args QueueArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var awsQueueResource = new Aws.MediaConvert.Queue("awsQueueResource", new()
{
    ConcurrentJobs = 0,
    Description = "string",
    Name = "string",
    PricingPlan = "string",
    Region = "string",
    ReservationPlanSettings = new Aws.MediaConvert.Inputs.QueueReservationPlanSettingsArgs
    {
        Commitment = "string",
        RenewalType = "string",
        ReservedSlots = 0,
    },
    Status = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := mediaconvert.NewQueue(ctx, "awsQueueResource", &mediaconvert.QueueArgs{
	ConcurrentJobs: pulumi.Int(0),
	Description:    pulumi.String("string"),
	Name:           pulumi.String("string"),
	PricingPlan:    pulumi.String("string"),
	Region:         pulumi.String("string"),
	ReservationPlanSettings: &mediaconvert.QueueReservationPlanSettingsArgs{
		Commitment:    pulumi.String("string"),
		RenewalType:   pulumi.String("string"),
		ReservedSlots: pulumi.Int(0),
	},
	Status: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var awsQueueResource = new com.pulumi.aws.mediaconvert.Queue("awsQueueResource", com.pulumi.aws.mediaconvert.QueueArgs.builder()
    .concurrentJobs(0)
    .description("string")
    .name("string")
    .pricingPlan("string")
    .region("string")
    .reservationPlanSettings(QueueReservationPlanSettingsArgs.builder()
        .commitment("string")
        .renewalType("string")
        .reservedSlots(0)
        .build())
    .status("string")
    .tags(Map.of("string", "string"))
    .build());
aws_queue_resource = aws.mediaconvert.Queue("awsQueueResource",
    concurrent_jobs=0,
    description="string",
    name="string",
    pricing_plan="string",
    region="string",
    reservation_plan_settings={
        "commitment": "string",
        "renewal_type": "string",
        "reserved_slots": 0,
    },
    status="string",
    tags={
        "string": "string",
    })
const awsQueueResource = new aws.mediaconvert.Queue("awsQueueResource", {
    concurrentJobs: 0,
    description: "string",
    name: "string",
    pricingPlan: "string",
    region: "string",
    reservationPlanSettings: {
        commitment: "string",
        renewalType: "string",
        reservedSlots: 0,
    },
    status: "string",
    tags: {
        string: "string",
    },
});
type: aws:mediaconvert:Queue
properties:
    concurrentJobs: 0
    description: string
    name: string
    pricingPlan: string
    region: string
    reservationPlanSettings:
        commitment: string
        renewalType: string
        reservedSlots: 0
    status: string
    tags:
        string: string
Queue Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Queue resource accepts the following input properties:
- ConcurrentJobs int
- 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 string
- A description of the queue
- Name string
- A unique identifier describing the queue
- PricingPlan string
- Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are ON_DEMANDorRESERVED. Default toON_DEMAND.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- ReservationPlan QueueSettings Reservation Plan Settings 
- A detail pricing plan of the reserved queue. See below.
- Status string
- A status of the queue. Valid values are ACTIVEorRESERVED. Default toPAUSED.
- Dictionary<string, string>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- ConcurrentJobs int
- 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 string
- A description of the queue
- Name string
- A unique identifier describing the queue
- PricingPlan string
- Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are ON_DEMANDorRESERVED. Default toON_DEMAND.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- ReservationPlan QueueSettings Reservation Plan Settings Args 
- A detail pricing plan of the reserved queue. See below.
- Status string
- A status of the queue. Valid values are ACTIVEorRESERVED. Default toPAUSED.
- map[string]string
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- concurrentJobs Integer
- 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 String
- A description of the queue
- name String
- A unique identifier describing the queue
- pricingPlan String
- Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are ON_DEMANDorRESERVED. Default toON_DEMAND.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- reservationPlan QueueSettings Reservation Plan Settings 
- A detail pricing plan of the reserved queue. See below.
- status String
- A status of the queue. Valid values are ACTIVEorRESERVED. Default toPAUSED.
- Map<String,String>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- concurrentJobs number
- 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 string
- A description of the queue
- name string
- A unique identifier describing the queue
- pricingPlan string
- Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are ON_DEMANDorRESERVED. Default toON_DEMAND.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- reservationPlan QueueSettings Reservation Plan Settings 
- A detail pricing plan of the reserved queue. See below.
- status string
- A status of the queue. Valid values are ACTIVEorRESERVED. Default toPAUSED.
- {[key: string]: string}
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- concurrent_jobs int
- 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 str
- A description of the queue
- name str
- A unique identifier describing the queue
- pricing_plan str
- Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are ON_DEMANDorRESERVED. Default toON_DEMAND.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- reservation_plan_ Queuesettings Reservation Plan Settings Args 
- A detail pricing plan of the reserved queue. See below.
- status str
- A status of the queue. Valid values are ACTIVEorRESERVED. Default toPAUSED.
- Mapping[str, str]
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- concurrentJobs Number
- 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 String
- A description of the queue
- name String
- A unique identifier describing the queue
- pricingPlan String
- Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are ON_DEMANDorRESERVED. Default toON_DEMAND.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- reservationPlan Property MapSettings 
- A detail pricing plan of the reserved queue. See below.
- status String
- A status of the queue. Valid values are ACTIVEorRESERVED. Default toPAUSED.
- Map<String>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the Queue resource produces the following output properties:
Look up Existing Queue Resource
Get an existing Queue resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: QueueState, opts?: CustomResourceOptions): Queue@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        concurrent_jobs: Optional[int] = None,
        description: Optional[str] = None,
        name: Optional[str] = None,
        pricing_plan: Optional[str] = None,
        region: Optional[str] = None,
        reservation_plan_settings: Optional[QueueReservationPlanSettingsArgs] = None,
        status: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> Queuefunc GetQueue(ctx *Context, name string, id IDInput, state *QueueState, opts ...ResourceOption) (*Queue, error)public static Queue Get(string name, Input<string> id, QueueState? state, CustomResourceOptions? opts = null)public static Queue get(String name, Output<String> id, QueueState state, CustomResourceOptions options)resources:  _:    type: aws:mediaconvert:Queue    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- The Arn of the queue
- ConcurrentJobs int
- 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 string
- A description of the queue
- Name string
- A unique identifier describing the queue
- PricingPlan string
- Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are ON_DEMANDorRESERVED. Default toON_DEMAND.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- ReservationPlan QueueSettings Reservation Plan Settings 
- A detail pricing plan of the reserved queue. See below.
- Status string
- A status of the queue. Valid values are ACTIVEorRESERVED. Default toPAUSED.
- Dictionary<string, string>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Arn string
- The Arn of the queue
- ConcurrentJobs int
- 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 string
- A description of the queue
- Name string
- A unique identifier describing the queue
- PricingPlan string
- Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are ON_DEMANDorRESERVED. Default toON_DEMAND.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- ReservationPlan QueueSettings Reservation Plan Settings Args 
- A detail pricing plan of the reserved queue. See below.
- Status string
- A status of the queue. Valid values are ACTIVEorRESERVED. Default toPAUSED.
- map[string]string
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The Arn of the queue
- concurrentJobs Integer
- 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 String
- A description of the queue
- name String
- A unique identifier describing the queue
- pricingPlan String
- Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are ON_DEMANDorRESERVED. Default toON_DEMAND.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- reservationPlan QueueSettings Reservation Plan Settings 
- A detail pricing plan of the reserved queue. See below.
- status String
- A status of the queue. Valid values are ACTIVEorRESERVED. Default toPAUSED.
- Map<String,String>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn string
- The Arn of the queue
- concurrentJobs number
- 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 string
- A description of the queue
- name string
- A unique identifier describing the queue
- pricingPlan string
- Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are ON_DEMANDorRESERVED. Default toON_DEMAND.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- reservationPlan QueueSettings Reservation Plan Settings 
- A detail pricing plan of the reserved queue. See below.
- status string
- A status of the queue. Valid values are ACTIVEorRESERVED. Default toPAUSED.
- {[key: string]: string}
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn str
- The Arn of the queue
- concurrent_jobs int
- 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 str
- A description of the queue
- name str
- A unique identifier describing the queue
- pricing_plan str
- Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are ON_DEMANDorRESERVED. Default toON_DEMAND.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- reservation_plan_ Queuesettings Reservation Plan Settings Args 
- A detail pricing plan of the reserved queue. See below.
- status str
- A status of the queue. Valid values are ACTIVEorRESERVED. Default toPAUSED.
- Mapping[str, str]
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The Arn of the queue
- concurrentJobs Number
- 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 String
- A description of the queue
- name String
- A unique identifier describing the queue
- pricingPlan String
- Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are ON_DEMANDorRESERVED. Default toON_DEMAND.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- reservationPlan Property MapSettings 
- A detail pricing plan of the reserved queue. See below.
- status String
- A status of the queue. Valid values are ACTIVEorRESERVED. Default toPAUSED.
- Map<String>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
Supporting Types
QueueReservationPlanSettings, QueueReservationPlanSettingsArgs        
- Commitment string
- The length of the term of your reserved queue pricing plan commitment. Valid value is ONE_YEAR.
- RenewalType string
- Specifies whether the term of your reserved queue pricing plan. Valid values are AUTO_RENEWorEXPIRE.
- ReservedSlots int
- Specifies the number of reserved transcode slots (RTS) for queue.
- Commitment string
- The length of the term of your reserved queue pricing plan commitment. Valid value is ONE_YEAR.
- RenewalType string
- Specifies whether the term of your reserved queue pricing plan. Valid values are AUTO_RENEWorEXPIRE.
- ReservedSlots int
- Specifies the number of reserved transcode slots (RTS) for queue.
- commitment String
- The length of the term of your reserved queue pricing plan commitment. Valid value is ONE_YEAR.
- renewalType String
- Specifies whether the term of your reserved queue pricing plan. Valid values are AUTO_RENEWorEXPIRE.
- reservedSlots Integer
- Specifies the number of reserved transcode slots (RTS) for queue.
- commitment string
- The length of the term of your reserved queue pricing plan commitment. Valid value is ONE_YEAR.
- renewalType string
- Specifies whether the term of your reserved queue pricing plan. Valid values are AUTO_RENEWorEXPIRE.
- reservedSlots number
- Specifies the number of reserved transcode slots (RTS) for queue.
- commitment str
- The length of the term of your reserved queue pricing plan commitment. Valid value is ONE_YEAR.
- renewal_type str
- Specifies whether the term of your reserved queue pricing plan. Valid values are AUTO_RENEWorEXPIRE.
- reserved_slots int
- Specifies the number of reserved transcode slots (RTS) for queue.
- commitment String
- The length of the term of your reserved queue pricing plan commitment. Valid value is ONE_YEAR.
- renewalType String
- Specifies whether the term of your reserved queue pricing plan. Valid values are AUTO_RENEWorEXPIRE.
- reservedSlots Number
- Specifies the number of reserved transcode slots (RTS) for queue.
Import
Using pulumi import, import Media Convert Queue using the queue name. For example:
$ pulumi import aws:mediaconvert/queue:Queue test tf-test-queue
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the awsTerraform Provider.
