Interface DvbNitSettings
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DvbNitSettings.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.024Z")
@Stability(Experimental)
public interface DvbNitSettings
extends software.amazon.jsii.JsiiSerializable
(experimental) Settings for inserting a DVB Network Information Table (NIT).
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.alpha.*;
import software.amazon.awscdk.*;
DvbNitSettings dvbNitSettings = DvbNitSettings.builder()
.networkId(123)
.networkName("networkName")
.repInterval(Duration.minutes(30))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDvbNitSettingsstatic final classAn implementation forDvbNitSettings -
Method Summary
Modifier and TypeMethodDescriptionstatic DvbNitSettings.Builderbuilder()default Number(experimental) The numeric value placed in the Network Information Table (NIT).default String(experimental) The network name placed in the networkNameDescriptor inside the NIT (max 256 characters).default Duration(experimental) The interval between instances of this table in the output transport stream.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNetworkId
(experimental) The numeric value placed in the Network Information Table (NIT).Default: - no network ID
-
getNetworkName
(experimental) The network name placed in the networkNameDescriptor inside the NIT (max 256 characters).Default: - no network name
-
getRepInterval
(experimental) The interval between instances of this table in the output transport stream.Default: - service default
-
builder
- Returns:
- a
DvbNitSettings.BuilderofDvbNitSettings
-