AWS Fundamentals Logo
AWS Fundamentals
AWS::MediaPackageV2::ChannelGroup

MediaPackageV2 ChannelGroup

<p>Represents a channel group that facilitates the grouping of multiple channels.</p>

Properties

3 configurable properties. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
ChannelGroupName
string
RequiredCreate-only
Description
string
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 group was created.</p>
EgressDomainstring<p>The output domain where the source stream should be sent. Integrate the domain with a downstream CDN (such as Amazon CloudFront) or playback device.</p>
ModifiedAtstring<p>The date and time the channel group 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::ChannelGroup

Resources:
  MyResource:
    Type: AWS::MediaPackageV2::ChannelGroup
    Properties:
      ChannelGroupName: "my-channelgroupname"
      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:CreateChannelGroup

read

mediapackagev2:GetChannelGroup

update

mediapackagev2:TagResourcemediapackagev2:UntagResourcemediapackagev2:ListTagsForResourcemediapackagev2:UpdateChannelGroup

delete

mediapackagev2:GetChannelGroupmediapackagev2:DeleteChannelGroup

list

mediapackagev2:ListChannelGroups

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
Properties7
Required1
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

ChannelGroupName

External Links