interface CfnChannelProps
Language | Type name |
---|---|
.NET | Amazon.CDK.aws_mediapackagev2.CfnChannelProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackagev2#CfnChannelProps |
Java | software.amazon.awscdk.services.mediapackagev2.CfnChannelProps |
Python | aws_cdk.aws_mediapackagev2.CfnChannelProps |
TypeScript | aws-cdk-lib » aws_mediapackagev2 » CfnChannelProps |
Properties for defining a CfnChannel
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackagev2 as mediapackagev2 } from 'aws-cdk-lib';
const cfnChannelProps: mediapackagev2.CfnChannelProps = {
channelGroupName: 'channelGroupName',
channelName: 'channelName',
// the properties below are optional
description: 'description',
inputType: 'inputType',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
channel | string | The name of the channel group associated with the channel configuration. |
channel | string | The name of the channel. |
description? | string | The description of the channel. |
input | string | The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. |
tags? | Cfn [] | The tags associated with the channel. |
channelGroupName
Type:
string
The name of the channel group associated with the channel configuration.
channelName
Type:
string
The name of the channel.
description?
Type:
string
(optional)
The description of the channel.
inputType?
Type:
string
(optional)
The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest.
If unprovided, it will default to HLS to preserve current behavior.
The allowed values are:
HLS
- The HLS streaming specification (which defines M3U8 manifests and TS segments).CMAF
- The DASH-IF CMAF Ingest specification (which defines CMAF segments with optional DASH manifests).
tags?
Type:
Cfn
[]
(optional)
The tags associated with the channel.