Interface CfnChannelProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannelProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:56:01.927Z") @Stability(Stable) public interface CfnChannelProps extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.mediatailor.*;
 CfnChannelProps cfnChannelProps = CfnChannelProps.builder()
         .channelName("channelName")
         .outputs(List.of(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()))
         .playbackMode("playbackMode")
         // the properties below are optional
         .audiences(List.of("audiences"))
         .fillerSlate(SlateSourceProperty.builder()
                 .sourceLocationName("sourceLocationName")
                 .vodSourceName("vodSourceName")
                 .build())
         .logConfiguration(LogConfigurationForChannelProperty.builder()
                 .logTypes(List.of("logTypes"))
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .tier("tier")
         .timeShiftConfiguration(TimeShiftConfigurationProperty.builder()
                 .maxTimeDelaySeconds(123)
                 .build())
         .build();
 

See Also: