aws-cdk-lib.aws_medialive.CfnChannel.DvbSdtSettingsProperty

interface DvbSdtSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.DvbSdtSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_DvbSdtSettingsProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.DvbSdtSettingsProperty
Pythonaws_cdk.aws_medialive.CfnChannel.DvbSdtSettingsProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » DvbSdtSettingsProperty

A DVB Service Description Table (SDT).

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 { aws_medialive as medialive } from 'aws-cdk-lib';
const dvbSdtSettingsProperty: medialive.CfnChannel.DvbSdtSettingsProperty = {
  outputSdt: 'outputSdt',
  repInterval: 123,
  serviceName: 'serviceName',
  serviceProviderName: 'serviceProviderName',
};

Properties

NameTypeDescription
outputSdt?stringSelects a method of inserting SDT information into an output stream.
repInterval?numberThe number of milliseconds between instances of this table in the output transport stream.
serviceName?stringThe service name placed in the serviceDescriptor in the Service Description Table (SDT).
serviceProviderName?stringThe service provider name placed in the serviceDescriptor in the Service Description Table (SDT).

outputSdt?

Type: string (optional)

Selects a method of inserting SDT information into an output stream.

The sdtFollow setting copies SDT information from input stream to output stream. The sdtFollowIfPresent setting copies SDT information from input stream to output stream if SDT information is present in the input. Otherwise, it falls back on the user-defined values. The sdtManual setting means that the user will enter the SDT information. The sdtNone setting means that the output stream will not contain SDT information.


repInterval?

Type: number (optional)

The number of milliseconds between instances of this table in the output transport stream.


serviceName?

Type: string (optional)

The service name placed in the serviceDescriptor in the Service Description Table (SDT).

The maximum length is 256 characters.


serviceProviderName?

Type: string (optional)

The service provider name placed in the serviceDescriptor in the Service Description Table (SDT).

The maximum length is 256 characters.