Interface CfnChannel.NielsenWatermarksSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.NielsenWatermarksSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.NielsenWatermarksSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Settings to configure Nielsen Watermarks in the audio encode.
The parent of this entity is AudioWatermarkSettings.
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.*; NielsenWatermarksSettingsProperty nielsenWatermarksSettingsProperty = 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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.NielsenWatermarksSettingsProperty
static final class
An implementation forCfnChannel.NielsenWatermarksSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Complete these fields only if you want to insert watermarks of type Nielsen CBET.default String
Choose the distribution types that you want to assign to the watermarks: - PROGRAM_CONTENT - FINAL_DISTRIBUTOR.default Object
Complete these fields only if you want to insert watermarks of type Nielsen NAES II (N2) and Nielsen NAES VI (NW).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNielsenCbetSettings
Complete these fields only if you want to insert watermarks of type Nielsen CBET. -
getNielsenDistributionType
Choose the distribution types that you want to assign to the watermarks: - PROGRAM_CONTENT - FINAL_DISTRIBUTOR. -
getNielsenNaesIiNwSettings
Complete these fields only if you want to insert watermarks of type Nielsen NAES II (N2) and Nielsen NAES VI (NW). -
builder
-