![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.mediapackagev2.kotlin.outputs.OriginEndpointDashUtcTiming.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.mediapackagev2.kotlin.outputs
import com.pulumi.awsnative.mediapackagev2.kotlin.enums.OriginEndpointDashUtcTimingMode
import kotlin.String
import kotlin.Suppress
/**
* Determines the type of UTC timing included in the DASH Media Presentation Description (MPD).
* @property timingMode The UTC timing mode.
* @property timingSource The the method that the player uses to synchronize to coordinated universal time (UTC) wall clock time.
*/
public data class OriginEndpointDashUtcTiming(
public val timingMode: OriginEndpointDashUtcTimingMode? = null,
public val timingSource: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.mediapackagev2.outputs.OriginEndpointDashUtcTiming): OriginEndpointDashUtcTiming = OriginEndpointDashUtcTiming(
timingMode = javaType.timingMode().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.mediapackagev2.kotlin.enums.OriginEndpointDashUtcTimingMode.Companion.toKotlin(args0)
})
}).orElse(null),
timingSource = javaType.timingSource().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy