aws.medialive.Multiplex
Explore with Pulumi AI
Resource for managing an AWS MediaLive Multiplex.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const available = aws.getAvailabilityZones({
    state: "available",
});
const example = new aws.medialive.Multiplex("example", {
    name: "example-multiplex-changed",
    availabilityZones: [
        available.then(available => available.names?.[0]),
        available.then(available => available.names?.[1]),
    ],
    multiplexSettings: {
        transportStreamBitrate: 1000000,
        transportStreamId: 1,
        transportStreamReservedBitrate: 1,
        maximumVideoBufferDelayMilliseconds: 1000,
    },
    startMultiplex: true,
    tags: {
        tag1: "value1",
    },
});
import pulumi
import pulumi_aws as aws
available = aws.get_availability_zones(state="available")
example = aws.medialive.Multiplex("example",
    name="example-multiplex-changed",
    availability_zones=[
        available.names[0],
        available.names[1],
    ],
    multiplex_settings={
        "transport_stream_bitrate": 1000000,
        "transport_stream_id": 1,
        "transport_stream_reserved_bitrate": 1,
        "maximum_video_buffer_delay_milliseconds": 1000,
    },
    start_multiplex=True,
    tags={
        "tag1": "value1",
    })
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/medialive"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		available, err := aws.GetAvailabilityZones(ctx, &aws.GetAvailabilityZonesArgs{
			State: pulumi.StringRef("available"),
		}, nil)
		if err != nil {
			return err
		}
		_, err = medialive.NewMultiplex(ctx, "example", &medialive.MultiplexArgs{
			Name: pulumi.String("example-multiplex-changed"),
			AvailabilityZones: pulumi.StringArray{
				pulumi.String(available.Names[0]),
				pulumi.String(available.Names[1]),
			},
			MultiplexSettings: &medialive.MultiplexMultiplexSettingsArgs{
				TransportStreamBitrate:              pulumi.Int(1000000),
				TransportStreamId:                   pulumi.Int(1),
				TransportStreamReservedBitrate:      pulumi.Int(1),
				MaximumVideoBufferDelayMilliseconds: pulumi.Int(1000),
			},
			StartMultiplex: pulumi.Bool(true),
			Tags: pulumi.StringMap{
				"tag1": pulumi.String("value1"),
			},
		})
		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 available = Aws.GetAvailabilityZones.Invoke(new()
    {
        State = "available",
    });
    var example = new Aws.MediaLive.Multiplex("example", new()
    {
        Name = "example-multiplex-changed",
        AvailabilityZones = new[]
        {
            available.Apply(getAvailabilityZonesResult => getAvailabilityZonesResult.Names[0]),
            available.Apply(getAvailabilityZonesResult => getAvailabilityZonesResult.Names[1]),
        },
        MultiplexSettings = new Aws.MediaLive.Inputs.MultiplexMultiplexSettingsArgs
        {
            TransportStreamBitrate = 1000000,
            TransportStreamId = 1,
            TransportStreamReservedBitrate = 1,
            MaximumVideoBufferDelayMilliseconds = 1000,
        },
        StartMultiplex = true,
        Tags = 
        {
            { "tag1", "value1" },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.AwsFunctions;
import com.pulumi.aws.inputs.GetAvailabilityZonesArgs;
import com.pulumi.aws.medialive.Multiplex;
import com.pulumi.aws.medialive.MultiplexArgs;
import com.pulumi.aws.medialive.inputs.MultiplexMultiplexSettingsArgs;
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) {
        final var available = AwsFunctions.getAvailabilityZones(GetAvailabilityZonesArgs.builder()
            .state("available")
            .build());
        var example = new Multiplex("example", MultiplexArgs.builder()
            .name("example-multiplex-changed")
            .availabilityZones(            
                available.applyValue(getAvailabilityZonesResult -> getAvailabilityZonesResult.names()[0]),
                available.applyValue(getAvailabilityZonesResult -> getAvailabilityZonesResult.names()[1]))
            .multiplexSettings(MultiplexMultiplexSettingsArgs.builder()
                .transportStreamBitrate(1000000)
                .transportStreamId(1)
                .transportStreamReservedBitrate(1)
                .maximumVideoBufferDelayMilliseconds(1000)
                .build())
            .startMultiplex(true)
            .tags(Map.of("tag1", "value1"))
            .build());
    }
}
resources:
  example:
    type: aws:medialive:Multiplex
    properties:
      name: example-multiplex-changed
      availabilityZones:
        - ${available.names[0]}
        - ${available.names[1]}
      multiplexSettings:
        transportStreamBitrate: 1e+06
        transportStreamId: 1
        transportStreamReservedBitrate: 1
        maximumVideoBufferDelayMilliseconds: 1000
      startMultiplex: true
      tags:
        tag1: value1
variables:
  available:
    fn::invoke:
      function: aws:getAvailabilityZones
      arguments:
        state: available
Create Multiplex Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Multiplex(name: string, args: MultiplexArgs, opts?: CustomResourceOptions);@overload
def Multiplex(resource_name: str,
              args: MultiplexArgs,
              opts: Optional[ResourceOptions] = None)
@overload
def Multiplex(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              availability_zones: Optional[Sequence[str]] = None,
              multiplex_settings: Optional[MultiplexMultiplexSettingsArgs] = None,
              name: Optional[str] = None,
              start_multiplex: Optional[bool] = None,
              tags: Optional[Mapping[str, str]] = None)func NewMultiplex(ctx *Context, name string, args MultiplexArgs, opts ...ResourceOption) (*Multiplex, error)public Multiplex(string name, MultiplexArgs args, CustomResourceOptions? opts = null)
public Multiplex(String name, MultiplexArgs args)
public Multiplex(String name, MultiplexArgs args, CustomResourceOptions options)
type: aws:medialive:Multiplex
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 MultiplexArgs
- 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 MultiplexArgs
- 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 MultiplexArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MultiplexArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MultiplexArgs
- 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 multiplexResource = new Aws.MediaLive.Multiplex("multiplexResource", new()
{
    AvailabilityZones = new[]
    {
        "string",
    },
    MultiplexSettings = new Aws.MediaLive.Inputs.MultiplexMultiplexSettingsArgs
    {
        TransportStreamBitrate = 0,
        TransportStreamId = 0,
        MaximumVideoBufferDelayMilliseconds = 0,
        TransportStreamReservedBitrate = 0,
    },
    Name = "string",
    StartMultiplex = false,
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := medialive.NewMultiplex(ctx, "multiplexResource", &medialive.MultiplexArgs{
	AvailabilityZones: pulumi.StringArray{
		pulumi.String("string"),
	},
	MultiplexSettings: &medialive.MultiplexMultiplexSettingsArgs{
		TransportStreamBitrate:              pulumi.Int(0),
		TransportStreamId:                   pulumi.Int(0),
		MaximumVideoBufferDelayMilliseconds: pulumi.Int(0),
		TransportStreamReservedBitrate:      pulumi.Int(0),
	},
	Name:           pulumi.String("string"),
	StartMultiplex: pulumi.Bool(false),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var multiplexResource = new Multiplex("multiplexResource", MultiplexArgs.builder()
    .availabilityZones("string")
    .multiplexSettings(MultiplexMultiplexSettingsArgs.builder()
        .transportStreamBitrate(0)
        .transportStreamId(0)
        .maximumVideoBufferDelayMilliseconds(0)
        .transportStreamReservedBitrate(0)
        .build())
    .name("string")
    .startMultiplex(false)
    .tags(Map.of("string", "string"))
    .build());
multiplex_resource = aws.medialive.Multiplex("multiplexResource",
    availability_zones=["string"],
    multiplex_settings={
        "transport_stream_bitrate": 0,
        "transport_stream_id": 0,
        "maximum_video_buffer_delay_milliseconds": 0,
        "transport_stream_reserved_bitrate": 0,
    },
    name="string",
    start_multiplex=False,
    tags={
        "string": "string",
    })
const multiplexResource = new aws.medialive.Multiplex("multiplexResource", {
    availabilityZones: ["string"],
    multiplexSettings: {
        transportStreamBitrate: 0,
        transportStreamId: 0,
        maximumVideoBufferDelayMilliseconds: 0,
        transportStreamReservedBitrate: 0,
    },
    name: "string",
    startMultiplex: false,
    tags: {
        string: "string",
    },
});
type: aws:medialive:Multiplex
properties:
    availabilityZones:
        - string
    multiplexSettings:
        maximumVideoBufferDelayMilliseconds: 0
        transportStreamBitrate: 0
        transportStreamId: 0
        transportStreamReservedBitrate: 0
    name: string
    startMultiplex: false
    tags:
        string: string
Multiplex 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 Multiplex resource accepts the following input properties:
- AvailabilityZones List<string>
- A list of availability zones. You must specify exactly two.
- MultiplexSettings MultiplexMultiplex Settings 
- Multiplex settings. See Multiplex Settings for more details.
- Name string
- name of Multiplex. - The following arguments are optional: 
- StartMultiplex bool
- Whether to start the Multiplex. Defaults to false.
- Dictionary<string, string>
- A map of tags to assign to the Multiplex. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- AvailabilityZones []string
- A list of availability zones. You must specify exactly two.
- MultiplexSettings MultiplexMultiplex Settings Args 
- Multiplex settings. See Multiplex Settings for more details.
- Name string
- name of Multiplex. - The following arguments are optional: 
- StartMultiplex bool
- Whether to start the Multiplex. Defaults to false.
- map[string]string
- A map of tags to assign to the Multiplex. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- availabilityZones List<String>
- A list of availability zones. You must specify exactly two.
- multiplexSettings MultiplexMultiplex Settings 
- Multiplex settings. See Multiplex Settings for more details.
- name String
- name of Multiplex. - The following arguments are optional: 
- startMultiplex Boolean
- Whether to start the Multiplex. Defaults to false.
- Map<String,String>
- A map of tags to assign to the Multiplex. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- availabilityZones string[]
- A list of availability zones. You must specify exactly two.
- multiplexSettings MultiplexMultiplex Settings 
- Multiplex settings. See Multiplex Settings for more details.
- name string
- name of Multiplex. - The following arguments are optional: 
- startMultiplex boolean
- Whether to start the Multiplex. Defaults to false.
- {[key: string]: string}
- A map of tags to assign to the Multiplex. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- availability_zones Sequence[str]
- A list of availability zones. You must specify exactly two.
- multiplex_settings MultiplexMultiplex Settings Args 
- Multiplex settings. See Multiplex Settings for more details.
- name str
- name of Multiplex. - The following arguments are optional: 
- start_multiplex bool
- Whether to start the Multiplex. Defaults to false.
- Mapping[str, str]
- A map of tags to assign to the Multiplex. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- availabilityZones List<String>
- A list of availability zones. You must specify exactly two.
- multiplexSettings Property Map
- Multiplex settings. See Multiplex Settings for more details.
- name String
- name of Multiplex. - The following arguments are optional: 
- startMultiplex Boolean
- Whether to start the Multiplex. Defaults to false.
- Map<String>
- A map of tags to assign to the Multiplex. 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 Multiplex resource produces the following output properties:
Look up Existing Multiplex Resource
Get an existing Multiplex 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?: MultiplexState, opts?: CustomResourceOptions): Multiplex@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        availability_zones: Optional[Sequence[str]] = None,
        multiplex_settings: Optional[MultiplexMultiplexSettingsArgs] = None,
        name: Optional[str] = None,
        start_multiplex: Optional[bool] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> Multiplexfunc GetMultiplex(ctx *Context, name string, id IDInput, state *MultiplexState, opts ...ResourceOption) (*Multiplex, error)public static Multiplex Get(string name, Input<string> id, MultiplexState? state, CustomResourceOptions? opts = null)public static Multiplex get(String name, Output<String> id, MultiplexState state, CustomResourceOptions options)resources:  _:    type: aws:medialive:Multiplex    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
- ARN of the Multiplex.
- AvailabilityZones List<string>
- A list of availability zones. You must specify exactly two.
- MultiplexSettings MultiplexMultiplex Settings 
- Multiplex settings. See Multiplex Settings for more details.
- Name string
- name of Multiplex. - The following arguments are optional: 
- StartMultiplex bool
- Whether to start the Multiplex. Defaults to false.
- Dictionary<string, string>
- A map of tags to assign to the Multiplex. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Dictionary<string, string>
- Arn string
- ARN of the Multiplex.
- AvailabilityZones []string
- A list of availability zones. You must specify exactly two.
- MultiplexSettings MultiplexMultiplex Settings Args 
- Multiplex settings. See Multiplex Settings for more details.
- Name string
- name of Multiplex. - The following arguments are optional: 
- StartMultiplex bool
- Whether to start the Multiplex. Defaults to false.
- map[string]string
- A map of tags to assign to the Multiplex. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- map[string]string
- arn String
- ARN of the Multiplex.
- availabilityZones List<String>
- A list of availability zones. You must specify exactly two.
- multiplexSettings MultiplexMultiplex Settings 
- Multiplex settings. See Multiplex Settings for more details.
- name String
- name of Multiplex. - The following arguments are optional: 
- startMultiplex Boolean
- Whether to start the Multiplex. Defaults to false.
- Map<String,String>
- A map of tags to assign to the Multiplex. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String,String>
- arn string
- ARN of the Multiplex.
- availabilityZones string[]
- A list of availability zones. You must specify exactly two.
- multiplexSettings MultiplexMultiplex Settings 
- Multiplex settings. See Multiplex Settings for more details.
- name string
- name of Multiplex. - The following arguments are optional: 
- startMultiplex boolean
- Whether to start the Multiplex. Defaults to false.
- {[key: string]: string}
- A map of tags to assign to the Multiplex. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- {[key: string]: string}
- arn str
- ARN of the Multiplex.
- availability_zones Sequence[str]
- A list of availability zones. You must specify exactly two.
- multiplex_settings MultiplexMultiplex Settings Args 
- Multiplex settings. See Multiplex Settings for more details.
- name str
- name of Multiplex. - The following arguments are optional: 
- start_multiplex bool
- Whether to start the Multiplex. Defaults to false.
- Mapping[str, str]
- A map of tags to assign to the Multiplex. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Mapping[str, str]
- arn String
- ARN of the Multiplex.
- availabilityZones List<String>
- A list of availability zones. You must specify exactly two.
- multiplexSettings Property Map
- Multiplex settings. See Multiplex Settings for more details.
- name String
- name of Multiplex. - The following arguments are optional: 
- startMultiplex Boolean
- Whether to start the Multiplex. Defaults to false.
- Map<String>
- A map of tags to assign to the Multiplex. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String>
Supporting Types
MultiplexMultiplexSettings, MultiplexMultiplexSettingsArgs      
- TransportStream intBitrate 
- Transport stream bit rate.
- TransportStream intId 
- Unique ID for each multiplex.
- MaximumVideo intBuffer Delay Milliseconds 
- Maximum video buffer delay.
- TransportStream intReserved Bitrate 
- Transport stream reserved bit rate.
- TransportStream intBitrate 
- Transport stream bit rate.
- TransportStream intId 
- Unique ID for each multiplex.
- MaximumVideo intBuffer Delay Milliseconds 
- Maximum video buffer delay.
- TransportStream intReserved Bitrate 
- Transport stream reserved bit rate.
- transportStream IntegerBitrate 
- Transport stream bit rate.
- transportStream IntegerId 
- Unique ID for each multiplex.
- maximumVideo IntegerBuffer Delay Milliseconds 
- Maximum video buffer delay.
- transportStream IntegerReserved Bitrate 
- Transport stream reserved bit rate.
- transportStream numberBitrate 
- Transport stream bit rate.
- transportStream numberId 
- Unique ID for each multiplex.
- maximumVideo numberBuffer Delay Milliseconds 
- Maximum video buffer delay.
- transportStream numberReserved Bitrate 
- Transport stream reserved bit rate.
- transport_stream_ intbitrate 
- Transport stream bit rate.
- transport_stream_ intid 
- Unique ID for each multiplex.
- maximum_video_ intbuffer_ delay_ milliseconds 
- Maximum video buffer delay.
- transport_stream_ intreserved_ bitrate 
- Transport stream reserved bit rate.
- transportStream NumberBitrate 
- Transport stream bit rate.
- transportStream NumberId 
- Unique ID for each multiplex.
- maximumVideo NumberBuffer Delay Milliseconds 
- Maximum video buffer delay.
- transportStream NumberReserved Bitrate 
- Transport stream reserved bit rate.
Import
Using pulumi import, import MediaLive Multiplex using the id. For example:
$ pulumi import aws:medialive/multiplex:Multiplex example 12345678
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.