Interface CfnChannel.AvailSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.AvailSettingsProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.AvailSettingsProperty extends software.amazon.jsii.JsiiSerializable
The settings for the ad avail setup in the output.

The parent of this entity is AvailConfiguration.

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.medialive.*;
 AvailSettingsProperty availSettingsProperty = AvailSettingsProperty.builder()
         .esam(EsamProperty.builder()
                 .acquisitionPointId("acquisitionPointId")
                 .adAvailOffset(123)
                 .passwordParam("passwordParam")
                 .poisEndpoint("poisEndpoint")
                 .username("username")
                 .zoneIdentity("zoneIdentity")
                 .build())
         .scte35SpliceInsert(Scte35SpliceInsertProperty.builder()
                 .adAvailOffset(123)
                 .noRegionalBlackoutFlag("noRegionalBlackoutFlag")
                 .webDeliveryAllowedFlag("webDeliveryAllowedFlag")
                 .build())
         .scte35TimeSignalApos(Scte35TimeSignalAposProperty.builder()
                 .adAvailOffset(123)
                 .noRegionalBlackoutFlag("noRegionalBlackoutFlag")
                 .webDeliveryAllowedFlag("webDeliveryAllowedFlag")
                 .build())
         .build();
 

See Also: