Interface CfnChannel.AudioWatermarkSettingsProperty

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

@Stability(Stable) public static interface CfnChannel.AudioWatermarkSettingsProperty extends software.amazon.jsii.JsiiSerializable
Audio Watermark Settings.

The parent of this entity is AudioDescription.

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.*;
 AudioWatermarkSettingsProperty audioWatermarkSettingsProperty = AudioWatermarkSettingsProperty.builder()
         .nielsenWatermarksSettings(NielsenWatermarksSettingsProperty.builder()
                 .nielsenCbetSettings(NielsenCBETProperty.builder()
                         .cbetCheckDigitString("cbetCheckDigitString")
                         .cbetStepaside("cbetStepaside")
                         .csid("csid")
                         .build())
                 .nielsenDistributionType("nielsenDistributionType")
                 .nielsenNaesIiNwSettings(NielsenNaesIiNwProperty.builder()
                         .checkDigitString("checkDigitString")
                         .sid(123)
                         .timezone("timezone")
                         .build())
                 .build())
         .build();
 

See Also: