
com.pulumi.awsnative.mediatailor.kotlin.inputs.PlaybackConfigurationDashConfigurationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.mediatailor.kotlin.inputs
import com.pulumi.awsnative.mediatailor.inputs.PlaybackConfigurationDashConfigurationArgs.builder
import com.pulumi.awsnative.mediatailor.kotlin.enums.PlaybackConfigurationDashConfigurationOriginManifestType
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The configuration for DASH PUT operations.
* @property manifestEndpointPrefix The URL generated by MediaTailor to initiate a DASH playback session. The session uses server-side reporting.
* @property mpdLocation The setting that controls whether MediaTailor includes the Location tag in DASH manifests. MediaTailor populates the Location tag with the URL for manifest update requests, to be used by players that don't support sticky redirects. Disable this if you have CDN routing rules set up for accessing MediaTailor manifests, and you are either using client-side reporting or your players support sticky HTTP redirects. Valid values are DISABLED and EMT_DEFAULT. The EMT_DEFAULT setting enables the inclusion of the tag and is the default value.
* @property originManifestType The setting that controls whether MediaTailor handles manifests from the origin server as multi-period manifests or single-period manifests. If your origin server produces single-period manifests, set this to SINGLE_PERIOD. The default setting is MULTI_PERIOD. For multi-period manifests, omit this setting or set it to MULTI_PERIOD.
*/
public data class PlaybackConfigurationDashConfigurationArgs(
public val manifestEndpointPrefix: Output? = null,
public val mpdLocation: Output? = null,
public val originManifestType: Output? =
null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.mediatailor.inputs.PlaybackConfigurationDashConfigurationArgs =
com.pulumi.awsnative.mediatailor.inputs.PlaybackConfigurationDashConfigurationArgs.builder()
.manifestEndpointPrefix(manifestEndpointPrefix?.applyValue({ args0 -> args0 }))
.mpdLocation(mpdLocation?.applyValue({ args0 -> args0 }))
.originManifestType(
originManifestType?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [PlaybackConfigurationDashConfigurationArgs].
*/
@PulumiTagMarker
public class PlaybackConfigurationDashConfigurationArgsBuilder internal constructor() {
private var manifestEndpointPrefix: Output? = null
private var mpdLocation: Output? = null
private var originManifestType: Output? =
null
/**
* @param value The URL generated by MediaTailor to initiate a DASH playback session. The session uses server-side reporting.
*/
@JvmName("cualnwkpeswomrvf")
public suspend fun manifestEndpointPrefix(`value`: Output) {
this.manifestEndpointPrefix = value
}
/**
* @param value The setting that controls whether MediaTailor includes the Location tag in DASH manifests. MediaTailor populates the Location tag with the URL for manifest update requests, to be used by players that don't support sticky redirects. Disable this if you have CDN routing rules set up for accessing MediaTailor manifests, and you are either using client-side reporting or your players support sticky HTTP redirects. Valid values are DISABLED and EMT_DEFAULT. The EMT_DEFAULT setting enables the inclusion of the tag and is the default value.
*/
@JvmName("yrieqqiimtbrssoi")
public suspend fun mpdLocation(`value`: Output) {
this.mpdLocation = value
}
/**
* @param value The setting that controls whether MediaTailor handles manifests from the origin server as multi-period manifests or single-period manifests. If your origin server produces single-period manifests, set this to SINGLE_PERIOD. The default setting is MULTI_PERIOD. For multi-period manifests, omit this setting or set it to MULTI_PERIOD.
*/
@JvmName("owjokxcexgfplwuh")
public suspend fun originManifestType(`value`: Output) {
this.originManifestType = value
}
/**
* @param value The URL generated by MediaTailor to initiate a DASH playback session. The session uses server-side reporting.
*/
@JvmName("wjtysqfyjwflwgha")
public suspend fun manifestEndpointPrefix(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.manifestEndpointPrefix = mapped
}
/**
* @param value The setting that controls whether MediaTailor includes the Location tag in DASH manifests. MediaTailor populates the Location tag with the URL for manifest update requests, to be used by players that don't support sticky redirects. Disable this if you have CDN routing rules set up for accessing MediaTailor manifests, and you are either using client-side reporting or your players support sticky HTTP redirects. Valid values are DISABLED and EMT_DEFAULT. The EMT_DEFAULT setting enables the inclusion of the tag and is the default value.
*/
@JvmName("kuexncbxwqlabely")
public suspend fun mpdLocation(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.mpdLocation = mapped
}
/**
* @param value The setting that controls whether MediaTailor handles manifests from the origin server as multi-period manifests or single-period manifests. If your origin server produces single-period manifests, set this to SINGLE_PERIOD. The default setting is MULTI_PERIOD. For multi-period manifests, omit this setting or set it to MULTI_PERIOD.
*/
@JvmName("ifbhtafijgtrodfa")
public suspend fun originManifestType(`value`: PlaybackConfigurationDashConfigurationOriginManifestType?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.originManifestType = mapped
}
internal fun build(): PlaybackConfigurationDashConfigurationArgs =
PlaybackConfigurationDashConfigurationArgs(
manifestEndpointPrefix = manifestEndpointPrefix,
mpdLocation = mpdLocation,
originManifestType = originManifestType,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy