DvbNitSettings
- class aws_cdk.aws_medialive_alpha.DvbNitSettings(*, network_id=None, network_name=None, rep_interval=None)
Bases:
object(experimental) Settings for inserting a DVB Network Information Table (NIT).
- Parameters:
network_id (
Union[int,float,None]) – (experimental) The numeric value placed in the Network Information Table (NIT). Default: - no network IDnetwork_name (
Optional[str]) – (experimental) The network name placed in the networkNameDescriptor inside the NIT (max 256 characters). Default: - no network namerep_interval (
Optional[Duration]) – (experimental) The interval between instances of this table in the output transport stream. Default: - service default
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_medialive_alpha as medialive_alpha import aws_cdk as cdk dvb_nit_settings = medialive_alpha.DvbNitSettings( network_id=123, network_name="networkName", rep_interval=cdk.Duration.minutes(30) )
Attributes
- network_id
(experimental) The numeric value placed in the Network Information Table (NIT).
- Default:
no network ID
- Stability:
experimental
- network_name
(experimental) The network name placed in the networkNameDescriptor inside the NIT (max 256 characters).
- Default:
no network name
- Stability:
experimental
- rep_interval
(experimental) The interval between instances of this table in the output transport stream.
- Default:
service default
- Stability:
experimental