Resource: aws_media_package_channel

Provides an AWS Elemental MediaPackage Channel.

Example Usage

resource "aws_media_package_channel" "kittens" {
  channel_id  = "kitten-channel"
  description = "A channel dedicated to amusing videos of kittens."
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import Media Package Channels using the channel ID. For example:

import {
  to = aws_media_package_channel.kittens
  id = "kittens-channel"
}

Using terraform import, import Media Package Channels using the channel ID. For example:

% terraform import aws_media_package_channel.kittens kittens-channel