interface DvbNitSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.DvbNitSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_DvbNitSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.DvbNitSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.DvbNitSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » DvbNitSettingsProperty |
The configuration of DVB NIT.
The parent of this entity is M2tsSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const dvbNitSettingsProperty: medialive_mixins.CfnChannelPropsMixin.DvbNitSettingsProperty = {
networkId: 123,
networkName: 'networkName',
repInterval: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| network | number | The numeric value placed in the Network Information Table (NIT). |
| network | string | The network name text placed in the networkNameDescriptor inside the Network Information Table (NIT). |
| rep | number | The number of milliseconds between instances of this table in the output transport stream. |
networkId?
Type:
number
(optional)
The numeric value placed in the Network Information Table (NIT).
networkName?
Type:
string
(optional)
The network name text placed in the networkNameDescriptor inside the Network Information Table (NIT).
The maximum length is 256 characters.
repInterval?
Type:
number
(optional)
The number of milliseconds between instances of this table in the output transport stream.

.NET
Go
Java
Python
TypeScript