interface RequestOutputItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaTailor.Mixins.CfnChannelPropsMixin.RequestOutputItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediatailor/mixins#CfnChannelPropsMixin_RequestOutputItemProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediatailor.mixins.CfnChannelPropsMixin.RequestOutputItemProperty |
Python | aws_cdk.mixins_preview.aws_mediatailor.mixins.CfnChannelPropsMixin.RequestOutputItemProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediatailor » mixins » CfnChannelPropsMixin » RequestOutputItemProperty |
The output configuration for this channel.
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 requestOutputItemProperty: mediatailor_mixins.CfnChannelPropsMixin.RequestOutputItemProperty = {
dashPlaylistSettings: {
manifestWindowSeconds: 123,
minBufferTimeSeconds: 123,
minUpdatePeriodSeconds: 123,
suggestedPresentationDelaySeconds: 123,
},
hlsPlaylistSettings: {
adMarkupType: ['adMarkupType'],
manifestWindowSeconds: 123,
},
manifestName: 'manifestName',
sourceGroup: 'sourceGroup',
};
Properties
| Name | Type | Description |
|---|---|---|
| dash | IResolvable | Dash | DASH manifest configuration parameters. |
| hls | IResolvable | Hls | HLS playlist configuration parameters. |
| manifest | string | The name of the manifest for the channel. |
| source | string | A string used to match which HttpPackageConfiguration is used for each VodSource . |
dashPlaylistSettings?
Type:
IResolvable | Dash
(optional)
DASH manifest configuration parameters.
hlsPlaylistSettings?
Type:
IResolvable | Hls
(optional)
HLS playlist configuration parameters.
manifestName?
Type:
string
(optional)
The name of the manifest for the channel.
The name appears in the PlaybackUrl .
sourceGroup?
Type:
string
(optional)
A string used to match which HttpPackageConfiguration is used for each VodSource .

.NET
Go
Java
Python
TypeScript