AWS Fundamentals Logo
AWS Fundamentals
AWS::MediaPackageV2::OriginEndpoint

MediaPackageV2 OriginEndpoint

<p>Represents an origin endpoint that is associated with a channel, offering a dynamically repackaged version of its content through various streaming media protocols. The content can be efficiently disseminated to end-users via a Content Delivery Network (CDN), like Amazon CloudFront.</p>

Properties

13 configurable properties. 4 required. Click a row to see details.

Filter:
PropertyTypeFlags
ChannelGroupName
string
RequiredCreate-only
ChannelName
string
RequiredCreate-only
ContainerType
string
Required
OriginEndpointName
string
RequiredCreate-only
DashManifests
Array<DashManifestConfiguration>
Description
string
ForceEndpointErrorConfiguration
ForceEndpointErrorConfiguration
HlsManifests
Array<HlsManifestConfiguration>
LowLatencyHlsManifests
Array<LowLatencyHlsManifestConfiguration>
MssManifests
Array<MssManifestConfiguration>
Segment
Segment
StartoverWindowSeconds
integer
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 origin endpoint was created.</p>
DashManifestUrlsArray<string>-
HlsManifestUrlsArray<string>-
LowLatencyHlsManifestUrlsArray<string>-
ModifiedAtstring<p>The date and time the origin endpoint was modified.</p>
MssManifestUrlsArray<string>-

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::OriginEndpoint

Resources:
  MyResource:
    Type: AWS::MediaPackageV2::OriginEndpoint
    Properties:
      ChannelGroupName: "my-channelgroupname"
      ChannelName: "my-channelname"
      OriginEndpointName: "my-originendpointname"
      ContainerType: "value"
      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:CreateOriginEndpointiam:PassRoleacm:DescribeCertificate

read

mediapackagev2:GetOriginEndpoint

update

mediapackagev2:TagResourcemediapackagev2:UntagResourcemediapackagev2:ListTagsForResourcemediapackagev2:UpdateOriginEndpointiam:PassRoleacm:DescribeCertificate

delete

mediapackagev2:GetOriginEndpointmediapackagev2:DeleteOriginEndpoint

list

mediapackagev2:ListOriginEndpoints

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
Properties20
Required4
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

ChannelGroupNameChannelNameOriginEndpointName

External Links