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 Classes
    Modifier and Type
    Interface
    Description
    static final class 
    A builder for DvbNitSettings
    static final class 
    An implementation for DvbNitSettings
  • Method Summary

    Modifier and Type
    Method
    Description
     
    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

      @Stability(Experimental) @Nullable default Number getNetworkId()
      (experimental) The numeric value placed in the Network Information Table (NIT).

      Default: - no network ID

    • getNetworkName

      @Stability(Experimental) @Nullable default String getNetworkName()
      (experimental) The network name placed in the networkNameDescriptor inside the NIT (max 256 characters).

      Default: - no network name

    • getRepInterval

      @Stability(Experimental) @Nullable default Duration getRepInterval()
      (experimental) The interval between instances of this table in the output transport stream.

      Default: - service default

    • builder

      @Stability(Experimental) static DvbNitSettings.Builder builder()
      Returns:
      a DvbNitSettings.Builder of DvbNitSettings