AWS Fundamentals Logo
AWS Fundamentals
AWS::MediaPackage::HarvestJob

MediaPackage HarvestJob

Resource schema for AWS::MediaPackage::HarvestJob. A HarvestJob extracts a video on demand (VOD) clip from a live content stream.

Properties

5 configurable properties. 5 required. Click a row to see details.

Filter:
PropertyTypeFlags
EndTime
string
RequiredCreate-only
Id
string
RequiredCreate-only
OriginEndpointId
string
RequiredCreate-only
S3Destination
S3Destination
RequiredCreate-only
StartTime
string
RequiredCreate-only

Return Values

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

AttributeTypeDescription
ArnstringThe Amazon Resource Name (ARN) assigned to the HarvestJob.
ChannelIdstringThe ID of the Channel that the HarvestJob will harvest from.
CreatedAtstringThe date and time the HarvestJob was submitted.
StatusstringThe current status of the HarvestJob.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::MediaPackage::HarvestJob

Resources:
  MyResource:
    Type: AWS::MediaPackage::HarvestJob
    Properties:
      EndTime: "value"
      Id: "my-id"
      OriginEndpointId: "my-originendpointid"
      S3Destination: "value"
      StartTime: "value"

Required IAM Permissions

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

read

mediapackage:DescribeHarvestJob

list

mediapackage:ListHarvestJobs

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

ServiceMediaPackage
Properties9
Required5
TaggingNot supported
Primary IDArn

Supported Operations

ReadList

Immutable After Creation

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

EndTimeIdOriginEndpointIdS3DestinationStartTime

External Links