Show / Hide Table of Contents

Namespace Pulumi.Aws.MediaPackage

Classes

Channel

Provides an AWS Elemental MediaPackage Channel.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var kittens = new Aws.MediaPackage.Channel("kittens", new Aws.MediaPackage.ChannelArgs
    {
        ChannelId = "kitten-channel",
        Description = "A channel dedicated to amusing videos of kittens.",
    });
}

}

ChannelArgs

ChannelState

Back to top Copyright 2016-2020, Pulumi Corporation.