This page documents the language specification for the aws package. If you're looking for help working with the inputs, outputs, or functions of aws resources in a Pulumi program, please see the resource documentation for examples and API reference.
mediaconvert¶
This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-aws repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-aws repo.
- class
pulumi_aws.mediaconvert.Queue(resource_name, opts=None, description=None, name=None, pricing_plan=None, reservation_plan_settings=None, status=None, tags=None, __props__=None, __name__=None, __opts__=None)¶ Provides an AWS Elemental MediaConvert Queue.
import pulumi import pulumi_aws as aws test = aws.mediaconvert.Queue("test")
- Parameters
resource_name (str) – The name of the resource.
opts (pulumi.ResourceOptions) – Options for the resource.
description (pulumi.Input[str]) – A description of the queue
name (pulumi.Input[str]) – A unique identifier describing the queue
pricing_plan (pulumi.Input[str]) – Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are
ON_DEMANDorRESERVED. Default toON_DEMAND.reservation_plan_settings (pulumi.Input[dict]) – A detail pricing plan of the reserved queue. See below.
status (pulumi.Input[str]) – A status of the queue. Valid values are
ACTIVEorRESERVED. Default toPAUSED.tags (pulumi.Input[dict]) – A map of tags to assign to the resource.
The reservation_plan_settings object supports the following:
commitment(pulumi.Input[str]) - The length of the term of your reserved queue pricing plan commitment. Valid value isONE_YEAR.renewalType(pulumi.Input[str]) - Specifies whether the term of your reserved queue pricing plan. Valid values areAUTO_RENEWorEXPIRE.reservedSlots(pulumi.Input[float]) - Specifies the number of reserved transcode slots (RTS) for queue.
arn: pulumi.Output[str] = None¶The Arn of the queue
description: pulumi.Output[str] = None¶A description of the queue
name: pulumi.Output[str] = None¶A unique identifier describing the queue
pricing_plan: pulumi.Output[str] = None¶Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are
ON_DEMANDorRESERVED. Default toON_DEMAND.
reservation_plan_settings: pulumi.Output[dict] = None¶A detail pricing plan of the reserved queue. See below.
commitment(str) - The length of the term of your reserved queue pricing plan commitment. Valid value isONE_YEAR.renewalType(str) - Specifies whether the term of your reserved queue pricing plan. Valid values areAUTO_RENEWorEXPIRE.reservedSlots(float) - Specifies the number of reserved transcode slots (RTS) for queue.
status: pulumi.Output[str] = None¶A status of the queue. Valid values are
ACTIVEorRESERVED. Default toPAUSED.
A map of tags to assign to the resource.
- static
get(resource_name, id, opts=None, arn=None, description=None, name=None, pricing_plan=None, reservation_plan_settings=None, status=None, tags=None)¶ Get an existing Queue resource’s state with the given name, id, and optional extra properties used to qualify the lookup.
- Parameters
resource_name (str) – The unique name of the resulting resource.
id (str) – The unique provider ID of the resource to lookup.
opts (pulumi.ResourceOptions) – Options for the resource.
arn (pulumi.Input[str]) – The Arn of the queue
description (pulumi.Input[str]) – A description of the queue
name (pulumi.Input[str]) – A unique identifier describing the queue
pricing_plan (pulumi.Input[str]) – Specifies whether the pricing plan for the queue is on-demand or reserved. Valid values are
ON_DEMANDorRESERVED. Default toON_DEMAND.reservation_plan_settings (pulumi.Input[dict]) – A detail pricing plan of the reserved queue. See below.
status (pulumi.Input[str]) – A status of the queue. Valid values are
ACTIVEorRESERVED. Default toPAUSED.tags (pulumi.Input[dict]) – A map of tags to assign to the resource.
The reservation_plan_settings object supports the following:
commitment(pulumi.Input[str]) - The length of the term of your reserved queue pricing plan commitment. Valid value isONE_YEAR.renewalType(pulumi.Input[str]) - Specifies whether the term of your reserved queue pricing plan. Valid values areAUTO_RENEWorEXPIRE.reservedSlots(pulumi.Input[float]) - Specifies the number of reserved transcode slots (RTS) for queue.
translate_output_property(prop)¶Provides subclasses of Resource an opportunity to translate names of output properties into a format of their choosing before writing those properties to the resource object.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str
translate_input_property(prop)¶Provides subclasses of Resource an opportunity to translate names of input properties into a format of their choosing before sending those properties to the Pulumi engine.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str