Interface CfnChannel.AvailConfigurationProperty

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

@Stability(Stable) public static interface CfnChannel.AvailConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The setup of ad avail handling in the output.

The parent of this entity is EncoderSettings.

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.*;
 AvailConfigurationProperty availConfigurationProperty = AvailConfigurationProperty.builder()
         .availSettings(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())
         .build();
 

See Also: