interface CfnChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaTailor.Mixins.CfnChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediatailor/mixins#CfnChannelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediatailor.mixins.CfnChannelMixinProps |
Python | aws_cdk.mixins_preview.aws_mediatailor.mixins.CfnChannelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediatailor » mixins » CfnChannelMixinProps |
Properties for CfnChannelPropsMixin.
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 { mixins as mediatailor_mixins } from '@aws-cdk/mixins-preview/aws-mediatailor';
const cfnChannelMixinProps: mediatailor_mixins.CfnChannelMixinProps = {
audiences: ['audiences'],
channelName: 'channelName',
fillerSlate: {
sourceLocationName: 'sourceLocationName',
vodSourceName: 'vodSourceName',
},
logConfiguration: {
logTypes: ['logTypes'],
},
outputs: [{
dashPlaylistSettings: {
manifestWindowSeconds: 123,
minBufferTimeSeconds: 123,
minUpdatePeriodSeconds: 123,
suggestedPresentationDelaySeconds: 123,
},
hlsPlaylistSettings: {
adMarkupType: ['adMarkupType'],
manifestWindowSeconds: 123,
},
manifestName: 'manifestName',
sourceGroup: 'sourceGroup',
}],
playbackMode: 'playbackMode',
tags: [{
key: 'key',
value: 'value',
}],
tier: 'tier',
timeShiftConfiguration: {
maxTimeDelaySeconds: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| audiences? | string[] | The list of audiences defined in channel. |
| channel | string | The name of the channel. |
| filler | IResolvable | Slate | The slate used to fill gaps between programs in the schedule. |
| log | IResolvable | Log | The log configuration. |
| outputs? | IResolvable | (IResolvable | Request)[] | The channel's output properties. |
| playback | string | The type of playback mode for this channel. |
| 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. |
audiences?
Type:
string[]
(optional)
The list of audiences defined in channel.
channelName?
Type:
string
(optional)
The name of the 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.
outputs?
Type:
IResolvable | (IResolvable | Request)[]
(optional)
The channel's output properties.
playbackMode?
Type:
string
(optional)
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.
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