Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@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