All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.mediapackage.kotlin.inputs.OriginEndpointDashPackageArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.mediapackage.kotlin.inputs

import com.pulumi.awsnative.mediapackage.inputs.OriginEndpointDashPackageArgs.builder
import com.pulumi.awsnative.mediapackage.kotlin.enums.OriginEndpointAdsOnDeliveryRestrictions
import com.pulumi.awsnative.mediapackage.kotlin.enums.OriginEndpointDashPackageAdTriggersItem
import com.pulumi.awsnative.mediapackage.kotlin.enums.OriginEndpointDashPackageManifestLayout
import com.pulumi.awsnative.mediapackage.kotlin.enums.OriginEndpointDashPackagePeriodTriggersItem
import com.pulumi.awsnative.mediapackage.kotlin.enums.OriginEndpointDashPackageProfile
import com.pulumi.awsnative.mediapackage.kotlin.enums.OriginEndpointDashPackageSegmentTemplateFormat
import com.pulumi.awsnative.mediapackage.kotlin.enums.OriginEndpointDashPackageUtcTiming
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
 * @property adTriggers A list of SCTE-35 message types that are treated as ad markers in the output.  If empty, no ad markers are output.  Specify multiple items to create ad markers for all of the included message types.
 * @property adsOnDeliveryRestrictions The flags on SCTE-35 segmentation descriptors that have to be present for AWS Elemental MediaPackage to insert ad markers in the output manifest. For information about SCTE-35 in AWS Elemental MediaPackage , see [SCTE-35 Message Options in AWS Elemental MediaPackage](https://docs.aws.amazon.com/mediapackage/latest/ug/scte.html) .
 * @property encryption Parameters for encrypting content.
 * @property includeIframeOnlyStream When enabled, an I-Frame only stream will be included in the output.
 * @property manifestLayout Determines the position of some tags in the Media Presentation Description (MPD).  When set to FULL, elements like SegmentTemplate and ContentProtection are included in each Representation.  When set to COMPACT, duplicate elements are combined and presented at the AdaptationSet level.
 * @property manifestWindowSeconds Time window (in seconds) contained in each manifest.
 * @property minBufferTimeSeconds Minimum duration (in seconds) that a player will buffer media before starting the presentation.
 * @property minUpdatePeriodSeconds Minimum duration (in seconds) between potential changes to the Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD).
 * @property periodTriggers A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not be partitioned into more than one period. If the list contains "ADS", new periods will be created where the Channel source contains SCTE-35 ad markers.
 * @property profile The Dynamic Adaptive Streaming over HTTP (DASH) profile type.  When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled.
 * @property segmentDurationSeconds Duration (in seconds) of each segment. Actual segments will be rounded to the nearest multiple of the source segment duration.
 * @property segmentTemplateFormat Determines the type of SegmentTemplate included in the Media Presentation Description (MPD).  When set to NUMBER_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Number$ media URLs.  When set to TIME_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Time$ media URLs. When set to NUMBER_WITH_DURATION, only a duration is included in each SegmentTemplate, with $Number$ media URLs.
 * @property streamSelection Limitations for outputs from the endpoint, based on the video bitrate.
 * @property suggestedPresentationDelaySeconds Duration (in seconds) to delay live content before presentation.
 * @property utcTiming Determines the type of UTCTiming included in the Media Presentation Description (MPD)
 * @property utcTimingUri Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO, HTTP-HEAD or HTTP-XSDATE
 */
public data class OriginEndpointDashPackageArgs(
    public val adTriggers: Output>? = null,
    public val adsOnDeliveryRestrictions: Output? = null,
    public val encryption: Output? = null,
    public val includeIframeOnlyStream: Output? = null,
    public val manifestLayout: Output? = null,
    public val manifestWindowSeconds: Output? = null,
    public val minBufferTimeSeconds: Output? = null,
    public val minUpdatePeriodSeconds: Output? = null,
    public val periodTriggers: Output>? = null,
    public val profile: Output? = null,
    public val segmentDurationSeconds: Output? = null,
    public val segmentTemplateFormat: Output? = null,
    public val streamSelection: Output? = null,
    public val suggestedPresentationDelaySeconds: Output? = null,
    public val utcTiming: Output? = null,
    public val utcTimingUri: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.mediapackage.inputs.OriginEndpointDashPackageArgs =
        com.pulumi.awsnative.mediapackage.inputs.OriginEndpointDashPackageArgs.builder()
            .adTriggers(
                adTriggers?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            )
            .adsOnDeliveryRestrictions(
                adsOnDeliveryRestrictions?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            )
            .encryption(encryption?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .includeIframeOnlyStream(includeIframeOnlyStream?.applyValue({ args0 -> args0 }))
            .manifestLayout(manifestLayout?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .manifestWindowSeconds(manifestWindowSeconds?.applyValue({ args0 -> args0 }))
            .minBufferTimeSeconds(minBufferTimeSeconds?.applyValue({ args0 -> args0 }))
            .minUpdatePeriodSeconds(minUpdatePeriodSeconds?.applyValue({ args0 -> args0 }))
            .periodTriggers(
                periodTriggers?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            )
            .profile(profile?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .segmentDurationSeconds(segmentDurationSeconds?.applyValue({ args0 -> args0 }))
            .segmentTemplateFormat(
                segmentTemplateFormat?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            )
            .streamSelection(streamSelection?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .suggestedPresentationDelaySeconds(
                suggestedPresentationDelaySeconds?.applyValue({ args0 ->
                    args0
                }),
            )
            .utcTiming(utcTiming?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .utcTimingUri(utcTimingUri?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [OriginEndpointDashPackageArgs].
 */
@PulumiTagMarker
public class OriginEndpointDashPackageArgsBuilder internal constructor() {
    private var adTriggers: Output>? = null

    private var adsOnDeliveryRestrictions: Output? = null

    private var encryption: Output? = null

    private var includeIframeOnlyStream: Output? = null

    private var manifestLayout: Output? = null

    private var manifestWindowSeconds: Output? = null

    private var minBufferTimeSeconds: Output? = null

    private var minUpdatePeriodSeconds: Output? = null

    private var periodTriggers: Output>? = null

    private var profile: Output? = null

    private var segmentDurationSeconds: Output? = null

    private var segmentTemplateFormat: Output? = null

    private var streamSelection: Output? = null

    private var suggestedPresentationDelaySeconds: Output? = null

    private var utcTiming: Output? = null

    private var utcTimingUri: Output? = null

    /**
     * @param value A list of SCTE-35 message types that are treated as ad markers in the output.  If empty, no ad markers are output.  Specify multiple items to create ad markers for all of the included message types.
     */
    @JvmName("lippkhewgeedktul")
    public suspend fun adTriggers(`value`: Output>) {
        this.adTriggers = value
    }

    @JvmName("bxtukhcsqiitqqsb")
    public suspend fun adTriggers(vararg values: Output) {
        this.adTriggers = Output.all(values.asList())
    }

    /**
     * @param values A list of SCTE-35 message types that are treated as ad markers in the output.  If empty, no ad markers are output.  Specify multiple items to create ad markers for all of the included message types.
     */
    @JvmName("ahnxevycytylbhta")
    public suspend fun adTriggers(values: List>) {
        this.adTriggers = Output.all(values)
    }

    /**
     * @param value The flags on SCTE-35 segmentation descriptors that have to be present for AWS Elemental MediaPackage to insert ad markers in the output manifest. For information about SCTE-35 in AWS Elemental MediaPackage , see [SCTE-35 Message Options in AWS Elemental MediaPackage](https://docs.aws.amazon.com/mediapackage/latest/ug/scte.html) .
     */
    @JvmName("lkhlxavgiysdwvgx")
    public suspend fun adsOnDeliveryRestrictions(`value`: Output) {
        this.adsOnDeliveryRestrictions = value
    }

    /**
     * @param value Parameters for encrypting content.
     */
    @JvmName("cgklcttrftkmevgm")
    public suspend fun encryption(`value`: Output) {
        this.encryption = value
    }

    /**
     * @param value When enabled, an I-Frame only stream will be included in the output.
     */
    @JvmName("umshbwmyrgkkcnso")
    public suspend fun includeIframeOnlyStream(`value`: Output) {
        this.includeIframeOnlyStream = value
    }

    /**
     * @param value Determines the position of some tags in the Media Presentation Description (MPD).  When set to FULL, elements like SegmentTemplate and ContentProtection are included in each Representation.  When set to COMPACT, duplicate elements are combined and presented at the AdaptationSet level.
     */
    @JvmName("dixrhslhiaydfasn")
    public suspend fun manifestLayout(`value`: Output) {
        this.manifestLayout = value
    }

    /**
     * @param value Time window (in seconds) contained in each manifest.
     */
    @JvmName("uuvemdllhdvpjdry")
    public suspend fun manifestWindowSeconds(`value`: Output) {
        this.manifestWindowSeconds = value
    }

    /**
     * @param value Minimum duration (in seconds) that a player will buffer media before starting the presentation.
     */
    @JvmName("akhfgmxcevlxjpuf")
    public suspend fun minBufferTimeSeconds(`value`: Output) {
        this.minBufferTimeSeconds = value
    }

    /**
     * @param value Minimum duration (in seconds) between potential changes to the Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD).
     */
    @JvmName("akrosadjaqaskyvc")
    public suspend fun minUpdatePeriodSeconds(`value`: Output) {
        this.minUpdatePeriodSeconds = value
    }

    /**
     * @param value A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not be partitioned into more than one period. If the list contains "ADS", new periods will be created where the Channel source contains SCTE-35 ad markers.
     */
    @JvmName("daxysgfbcuwawybr")
    public suspend fun periodTriggers(`value`: Output>) {
        this.periodTriggers = value
    }

    @JvmName("njsmonhafkfhphhf")
    public suspend fun periodTriggers(vararg values: Output) {
        this.periodTriggers = Output.all(values.asList())
    }

    /**
     * @param values A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not be partitioned into more than one period. If the list contains "ADS", new periods will be created where the Channel source contains SCTE-35 ad markers.
     */
    @JvmName("qnnvimypqlxsbugs")
    public suspend fun periodTriggers(values: List>) {
        this.periodTriggers = Output.all(values)
    }

    /**
     * @param value The Dynamic Adaptive Streaming over HTTP (DASH) profile type.  When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled.
     */
    @JvmName("dqkkwqhkrklcoyrc")
    public suspend fun profile(`value`: Output) {
        this.profile = value
    }

    /**
     * @param value Duration (in seconds) of each segment. Actual segments will be rounded to the nearest multiple of the source segment duration.
     */
    @JvmName("nxticsrrdtvowtyw")
    public suspend fun segmentDurationSeconds(`value`: Output) {
        this.segmentDurationSeconds = value
    }

    /**
     * @param value Determines the type of SegmentTemplate included in the Media Presentation Description (MPD).  When set to NUMBER_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Number$ media URLs.  When set to TIME_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Time$ media URLs. When set to NUMBER_WITH_DURATION, only a duration is included in each SegmentTemplate, with $Number$ media URLs.
     */
    @JvmName("ipkqffyklcbbhjuh")
    public suspend fun segmentTemplateFormat(`value`: Output) {
        this.segmentTemplateFormat = value
    }

    /**
     * @param value Limitations for outputs from the endpoint, based on the video bitrate.
     */
    @JvmName("ltkeqwalgjnyvlia")
    public suspend fun streamSelection(`value`: Output) {
        this.streamSelection = value
    }

    /**
     * @param value Duration (in seconds) to delay live content before presentation.
     */
    @JvmName("josbhgnonhwmkvsl")
    public suspend fun suggestedPresentationDelaySeconds(`value`: Output) {
        this.suggestedPresentationDelaySeconds = value
    }

    /**
     * @param value Determines the type of UTCTiming included in the Media Presentation Description (MPD)
     */
    @JvmName("clxnrpkttcyfmcdy")
    public suspend fun utcTiming(`value`: Output) {
        this.utcTiming = value
    }

    /**
     * @param value Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO, HTTP-HEAD or HTTP-XSDATE
     */
    @JvmName("ybsahuvxahnxjdhy")
    public suspend fun utcTimingUri(`value`: Output) {
        this.utcTimingUri = value
    }

    /**
     * @param value A list of SCTE-35 message types that are treated as ad markers in the output.  If empty, no ad markers are output.  Specify multiple items to create ad markers for all of the included message types.
     */
    @JvmName("ocojejsrkidqlswy")
    public suspend fun adTriggers(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.adTriggers = mapped
    }

    /**
     * @param values A list of SCTE-35 message types that are treated as ad markers in the output.  If empty, no ad markers are output.  Specify multiple items to create ad markers for all of the included message types.
     */
    @JvmName("byclanfhsgxhqjqm")
    public suspend fun adTriggers(vararg values: OriginEndpointDashPackageAdTriggersItem) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.adTriggers = mapped
    }

    /**
     * @param value The flags on SCTE-35 segmentation descriptors that have to be present for AWS Elemental MediaPackage to insert ad markers in the output manifest. For information about SCTE-35 in AWS Elemental MediaPackage , see [SCTE-35 Message Options in AWS Elemental MediaPackage](https://docs.aws.amazon.com/mediapackage/latest/ug/scte.html) .
     */
    @JvmName("unqjnyxcsruodgxn")
    public suspend fun adsOnDeliveryRestrictions(`value`: OriginEndpointAdsOnDeliveryRestrictions?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.adsOnDeliveryRestrictions = mapped
    }

    /**
     * @param value Parameters for encrypting content.
     */
    @JvmName("qsykaenmemruxgnw")
    public suspend fun encryption(`value`: OriginEndpointDashEncryptionArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.encryption = mapped
    }

    /**
     * @param argument Parameters for encrypting content.
     */
    @JvmName("xqtbkcjvpsvwlhnl")
    public suspend fun encryption(argument: suspend OriginEndpointDashEncryptionArgsBuilder.() -> Unit) {
        val toBeMapped = OriginEndpointDashEncryptionArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.encryption = mapped
    }

    /**
     * @param value When enabled, an I-Frame only stream will be included in the output.
     */
    @JvmName("hxtckvkhixgoteny")
    public suspend fun includeIframeOnlyStream(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.includeIframeOnlyStream = mapped
    }

    /**
     * @param value Determines the position of some tags in the Media Presentation Description (MPD).  When set to FULL, elements like SegmentTemplate and ContentProtection are included in each Representation.  When set to COMPACT, duplicate elements are combined and presented at the AdaptationSet level.
     */
    @JvmName("igwxfityllfugbva")
    public suspend fun manifestLayout(`value`: OriginEndpointDashPackageManifestLayout?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.manifestLayout = mapped
    }

    /**
     * @param value Time window (in seconds) contained in each manifest.
     */
    @JvmName("rmpcmxnvtrxhdfgb")
    public suspend fun manifestWindowSeconds(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.manifestWindowSeconds = mapped
    }

    /**
     * @param value Minimum duration (in seconds) that a player will buffer media before starting the presentation.
     */
    @JvmName("eujjkcwfcraneoqw")
    public suspend fun minBufferTimeSeconds(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.minBufferTimeSeconds = mapped
    }

    /**
     * @param value Minimum duration (in seconds) between potential changes to the Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD).
     */
    @JvmName("ldlcyleivihanfog")
    public suspend fun minUpdatePeriodSeconds(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.minUpdatePeriodSeconds = mapped
    }

    /**
     * @param value A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not be partitioned into more than one period. If the list contains "ADS", new periods will be created where the Channel source contains SCTE-35 ad markers.
     */
    @JvmName("htsvlxmgasioisud")
    public suspend fun periodTriggers(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.periodTriggers = mapped
    }

    /**
     * @param values A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not be partitioned into more than one period. If the list contains "ADS", new periods will be created where the Channel source contains SCTE-35 ad markers.
     */
    @JvmName("gppsxpypsuikused")
    public suspend fun periodTriggers(vararg values: OriginEndpointDashPackagePeriodTriggersItem) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.periodTriggers = mapped
    }

    /**
     * @param value The Dynamic Adaptive Streaming over HTTP (DASH) profile type.  When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled.
     */
    @JvmName("wllfmcxaikvfqyog")
    public suspend fun profile(`value`: OriginEndpointDashPackageProfile?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.profile = mapped
    }

    /**
     * @param value Duration (in seconds) of each segment. Actual segments will be rounded to the nearest multiple of the source segment duration.
     */
    @JvmName("iubemdbtatjjmacd")
    public suspend fun segmentDurationSeconds(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.segmentDurationSeconds = mapped
    }

    /**
     * @param value Determines the type of SegmentTemplate included in the Media Presentation Description (MPD).  When set to NUMBER_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Number$ media URLs.  When set to TIME_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Time$ media URLs. When set to NUMBER_WITH_DURATION, only a duration is included in each SegmentTemplate, with $Number$ media URLs.
     */
    @JvmName("glqrcgfvxojehtne")
    public suspend fun segmentTemplateFormat(`value`: OriginEndpointDashPackageSegmentTemplateFormat?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.segmentTemplateFormat = mapped
    }

    /**
     * @param value Limitations for outputs from the endpoint, based on the video bitrate.
     */
    @JvmName("ydmfxuueogbpxpty")
    public suspend fun streamSelection(`value`: OriginEndpointStreamSelectionArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.streamSelection = mapped
    }

    /**
     * @param argument Limitations for outputs from the endpoint, based on the video bitrate.
     */
    @JvmName("fbmluxadktblmkuo")
    public suspend fun streamSelection(argument: suspend OriginEndpointStreamSelectionArgsBuilder.() -> Unit) {
        val toBeMapped = OriginEndpointStreamSelectionArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.streamSelection = mapped
    }

    /**
     * @param value Duration (in seconds) to delay live content before presentation.
     */
    @JvmName("womdxtacctsvkwcg")
    public suspend fun suggestedPresentationDelaySeconds(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.suggestedPresentationDelaySeconds = mapped
    }

    /**
     * @param value Determines the type of UTCTiming included in the Media Presentation Description (MPD)
     */
    @JvmName("msjtvbojbuqbioad")
    public suspend fun utcTiming(`value`: OriginEndpointDashPackageUtcTiming?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.utcTiming = mapped
    }

    /**
     * @param value Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO, HTTP-HEAD or HTTP-XSDATE
     */
    @JvmName("ogmyeeuaeignqrhm")
    public suspend fun utcTimingUri(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.utcTimingUri = mapped
    }

    internal fun build(): OriginEndpointDashPackageArgs = OriginEndpointDashPackageArgs(
        adTriggers = adTriggers,
        adsOnDeliveryRestrictions = adsOnDeliveryRestrictions,
        encryption = encryption,
        includeIframeOnlyStream = includeIframeOnlyStream,
        manifestLayout = manifestLayout,
        manifestWindowSeconds = manifestWindowSeconds,
        minBufferTimeSeconds = minBufferTimeSeconds,
        minUpdatePeriodSeconds = minUpdatePeriodSeconds,
        periodTriggers = periodTriggers,
        profile = profile,
        segmentDurationSeconds = segmentDurationSeconds,
        segmentTemplateFormat = segmentTemplateFormat,
        streamSelection = streamSelection,
        suggestedPresentationDelaySeconds = suggestedPresentationDelaySeconds,
        utcTiming = utcTiming,
        utcTimingUri = utcTimingUri,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy