amazonka-mediaconvert-2.0: Amazon Elemental MediaConvert SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.MediaConvert.Types.DvbSdtSettings

Description

 
Synopsis

Documentation

data DvbSdtSettings Source #

Use these settings to insert a DVB Service Description Table (SDT) in the transport stream of this output. When you work directly in your JSON job specification, include this object only when your job has a transport stream output and the container settings contain the object M2tsSettings.

See: newDvbSdtSettings smart constructor.

Constructors

DvbSdtSettings' 

Fields

  • outputSdt :: Maybe OutputSdt

    Selects method of inserting SDT information into output stream. "Follow input SDT" copies SDT information from input stream to output stream. "Follow input SDT if present" copies SDT information from input stream to output stream if SDT information is present in the input, otherwise it will fall back on the user-defined values. Enter "SDT Manually" means user will enter the SDT information. "No SDT" means output stream will not contain SDT information.

  • sdtInterval :: Maybe Natural

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

  • serviceName :: Maybe Text

    The service name placed in the service_descriptor in the Service Description Table. Maximum length is 256 characters.

  • serviceProviderName :: Maybe Text

    The service provider name placed in the service_descriptor in the Service Description Table. Maximum length is 256 characters.

Instances

Instances details
FromJSON DvbSdtSettings Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.DvbSdtSettings

ToJSON DvbSdtSettings Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.DvbSdtSettings

Generic DvbSdtSettings Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.DvbSdtSettings

Associated Types

type Rep DvbSdtSettings :: Type -> Type #

Read DvbSdtSettings Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.DvbSdtSettings

Show DvbSdtSettings Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.DvbSdtSettings

NFData DvbSdtSettings Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.DvbSdtSettings

Methods

rnf :: DvbSdtSettings -> () #

Eq DvbSdtSettings Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.DvbSdtSettings

Hashable DvbSdtSettings Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.DvbSdtSettings

type Rep DvbSdtSettings Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.DvbSdtSettings

type Rep DvbSdtSettings = D1 ('MetaData "DvbSdtSettings" "Amazonka.MediaConvert.Types.DvbSdtSettings" "amazonka-mediaconvert-2.0-ClG8xHhlx4y6bdaCrZchqH" 'False) (C1 ('MetaCons "DvbSdtSettings'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "outputSdt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe OutputSdt)) :*: S1 ('MetaSel ('Just "sdtInterval") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "serviceProviderName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newDvbSdtSettings :: DvbSdtSettings Source #

Create a value of DvbSdtSettings with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:outputSdt:DvbSdtSettings', dvbSdtSettings_outputSdt - Selects method of inserting SDT information into output stream. "Follow input SDT" copies SDT information from input stream to output stream. "Follow input SDT if present" copies SDT information from input stream to output stream if SDT information is present in the input, otherwise it will fall back on the user-defined values. Enter "SDT Manually" means user will enter the SDT information. "No SDT" means output stream will not contain SDT information.

$sel:sdtInterval:DvbSdtSettings', dvbSdtSettings_sdtInterval - The number of milliseconds between instances of this table in the output transport stream.

$sel:serviceName:DvbSdtSettings', dvbSdtSettings_serviceName - The service name placed in the service_descriptor in the Service Description Table. Maximum length is 256 characters.

$sel:serviceProviderName:DvbSdtSettings', dvbSdtSettings_serviceProviderName - The service provider name placed in the service_descriptor in the Service Description Table. Maximum length is 256 characters.

dvbSdtSettings_outputSdt :: Lens' DvbSdtSettings (Maybe OutputSdt) Source #

Selects method of inserting SDT information into output stream. "Follow input SDT" copies SDT information from input stream to output stream. "Follow input SDT if present" copies SDT information from input stream to output stream if SDT information is present in the input, otherwise it will fall back on the user-defined values. Enter "SDT Manually" means user will enter the SDT information. "No SDT" means output stream will not contain SDT information.

dvbSdtSettings_sdtInterval :: Lens' DvbSdtSettings (Maybe Natural) Source #

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

dvbSdtSettings_serviceName :: Lens' DvbSdtSettings (Maybe Text) Source #

The service name placed in the service_descriptor in the Service Description Table. Maximum length is 256 characters.

dvbSdtSettings_serviceProviderName :: Lens' DvbSdtSettings (Maybe Text) Source #

The service provider name placed in the service_descriptor in the Service Description Table. Maximum length is 256 characters.