interface CfnChannelProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnChannelProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnChannelProps |
Java | software.amazon.awscdk.services.mediatailor.CfnChannelProps |
Python | aws_cdk.aws_mediatailor.CfnChannelProps |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnChannelProps |
Properties for defining a CfnChannel.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-channel.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediatailor as mediatailor } from 'aws-cdk-lib';
const cfnChannelProps: mediatailor.CfnChannelProps = {
channelName: 'channelName',
outputs: [{
manifestName: 'manifestName',
sourceGroup: 'sourceGroup',
// the properties below are optional
dashPlaylistSettings: {
manifestWindowSeconds: 123,
minBufferTimeSeconds: 123,
minUpdatePeriodSeconds: 123,
suggestedPresentationDelaySeconds: 123,
},
hlsPlaylistSettings: {
adMarkupType: ['adMarkupType'],
manifestWindowSeconds: 123,
},
}],
playbackMode: 'playbackMode',
// the properties below are optional
audiences: ['audiences'],
fillerSlate: {
sourceLocationName: 'sourceLocationName',
vodSourceName: 'vodSourceName',
},
logConfiguration: {
logTypes: ['logTypes'],
},
tags: [{
key: 'key',
value: 'value',
}],
tier: 'tier',
timeShiftConfiguration: {
maxTimeDelaySeconds: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The name of the channel. |
| outputs | IResolvable | (IResolvable | Request)[] | The channel's output properties. |
| playback | string | The type of playback mode for this channel. |
| audiences? | string[] | The list of audiences defined in channel. |
| filler | IResolvable | Slate | The slate used to fill gaps between programs in the schedule. |
| log | IResolvable | Log | The log configuration. |
| tags? | Cfn[] | The tags to assign to the channel. |
| tier? | string | The tier for this channel. |
| time | IResolvable | Time | The configuration for time-shifted viewing. |
channelName
Type:
string
The name of the channel.
outputs
Type:
IResolvable | (IResolvable | Request)[]
The channel's output properties.
playbackMode
Type:
string
The type of playback mode for this channel.
LINEAR - Programs play back-to-back only once.
LOOP - Programs play back-to-back in an endless loop. When the last program in the schedule plays, playback loops back to the first program in the schedule.
audiences?
Type:
string[]
(optional)
The list of audiences defined in channel.
fillerSlate?
Type:
IResolvable | Slate
(optional)
The slate used to fill gaps between programs in the schedule.
You must configure filler slate if your channel uses the LINEAR PlaybackMode . MediaTailor doesn't support filler slate for channels using the LOOP PlaybackMode .
logConfiguration?
Type:
IResolvable | Log
(optional)
The log configuration.
tags?
Type:
Cfn[]
(optional)
The tags to assign to the channel.
Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see Tagging AWS Elemental MediaTailor Resources .
tier?
Type:
string
(optional)
The tier for this channel.
STANDARD tier channels can contain live programs.
timeShiftConfiguration?
Type:
IResolvable | Time
(optional)
The configuration for time-shifted viewing.

.NET
Go
Java
Python
TypeScript