AWS Fundamentals Logo
AWS Fundamentals
AWS::MediaPackageV2::Channel

MediaPackageV2 Channel

<p>Represents an entry point into AWS Elemental MediaPackage for an ABR video content stream sent from an upstream encoder such as AWS Elemental MediaLive. The channel continuously analyzes the content that it receives and prepares it to be distributed to consumers via one or more origin endpoints.</p>

Properties

7 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
ChannelGroupName
string
RequiredCreate-only
ChannelName
string
RequiredCreate-only
Description
string
InputSwitchConfiguration
InputSwitchConfiguration
InputType
string
Create-only
OutputHeaderConfiguration
OutputHeaderConfiguration
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
Arnstring<p>The Amazon Resource Name (ARN) associated with the resource.</p>
CreatedAtstring<p>The date and time the channel was created.</p>
IngestEndpointsArray<IngestEndpoint><p>The list of ingest endpoints.</p>
IngestEndpointUrlsArray<string>-
ModifiedAtstring<p>The date and time the channel was modified.</p>

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::MediaPackageV2::Channel

Resources:
  MyResource:
    Type: AWS::MediaPackageV2::Channel
    Properties:
      ChannelGroupName: "my-channelgroupname"
      ChannelName: "my-channelname"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

mediapackagev2:TagResourcemediapackagev2:CreateChannel

read

mediapackagev2:GetChannel

update

mediapackagev2:TagResourcemediapackagev2:UntagResourcemediapackagev2:ListTagsForResourcemediapackagev2:UpdateChannel

delete

mediapackagev2:GetChannelmediapackagev2:DeleteChannel

list

mediapackagev2:ListChannels

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceMediaPackageV2
Properties12
Required2
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

ChannelGroupNameChannelNameInputType

External Links