interface DvbNitSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.DvbNitSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#DvbNitSettings |
Java | software.amazon.awscdk.services.medialive.alpha.DvbNitSettings |
Python | aws_cdk.aws_medialive_alpha.DvbNitSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป DvbNitSettings |
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 * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
import * as cdk from 'aws-cdk-lib';
const dvbNitSettings: medialive_alpha.DvbNitSettings = {
networkId: 123,
networkName: 'networkName',
repInterval: cdk.Duration.minutes(30),
};
Properties
| Name | Type | Description |
|---|---|---|
| network | number | The numeric value placed in the Network Information Table (NIT). |
| network | string | The network name placed in the networkNameDescriptor inside the NIT (max 256 characters). |
| rep | Duration | The interval between instances of this table in the output transport stream. |
networkId?
Type:
number
(optional, default: no network ID)
The numeric value placed in the Network Information Table (NIT).
networkName?
Type:
string
(optional, default: no network name)
The network name placed in the networkNameDescriptor inside the NIT (max 256 characters).
repInterval?
Type:
Duration
(optional, default: service default)
The interval between instances of this table in the output transport stream.

.NET
Go
Java
Python
TypeScript (