Interface CfnChannel.RequestOutputItemProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.RequestOutputItemProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.RequestOutputItemProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.mediatailor.*;
RequestOutputItemProperty requestOutputItemProperty = RequestOutputItemProperty.builder()
.manifestName("manifestName")
.sourceGroup("sourceGroup")
// the properties below are optional
.dashPlaylistSettings(DashPlaylistSettingsProperty.builder()
.manifestWindowSeconds(123)
.minBufferTimeSeconds(123)
.minUpdatePeriodSeconds(123)
.suggestedPresentationDelaySeconds(123)
.build())
.hlsPlaylistSettings(HlsPlaylistSettingsProperty.builder()
.adMarkupType(List.of("adMarkupType"))
.manifestWindowSeconds(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.RequestOutputItemPropertystatic final classAn implementation forCfnChannel.RequestOutputItemProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getManifestName
The name of the manifest for the channel.The name appears in the
PlaybackUrl.- See Also:
-
getSourceGroup
A string used to match whichHttpPackageConfigurationis used for eachVodSource.- See Also:
-
getDashPlaylistSettings
DASH manifest configuration parameters.Returns union: either
IResolvableorCfnChannel.DashPlaylistSettingsProperty- See Also:
-
getHlsPlaylistSettings
HLS playlist configuration parameters.Returns union: either
IResolvableorCfnChannel.HlsPlaylistSettingsProperty- See Also:
-
builder
-