com.pulumi.gcp.transcoder.kotlin.outputs.JobTemplateConfigOverlayAnimationAnimationFade.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.transcoder.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property endTimeOffset The time to end the fade animation, in seconds.
* @property fadeType Required. Type of fade animation: `FADE_IN` or `FADE_OUT`.
* The possible values are:
* * `FADE_TYPE_UNSPECIFIED`: The fade type is not specified.
* * `FADE_IN`: Fade the overlay object into view.
* * `FADE_OUT`: Fade the overlay object out of view.
* Possible values are: `FADE_TYPE_UNSPECIFIED`, `FADE_IN`, `FADE_OUT`.
* @property startTimeOffset The time to start the fade animation, in seconds.
* @property xy Normalized coordinates based on output video resolution.
* Structure is documented below.
*/
public data class JobTemplateConfigOverlayAnimationAnimationFade(
public val endTimeOffset: String? = null,
public val fadeType: String,
public val startTimeOffset: String? = null,
public val xy: JobTemplateConfigOverlayAnimationAnimationFadeXy? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.transcoder.outputs.JobTemplateConfigOverlayAnimationAnimationFade): JobTemplateConfigOverlayAnimationAnimationFade =
JobTemplateConfigOverlayAnimationAnimationFade(
endTimeOffset = javaType.endTimeOffset().map({ args0 -> args0 }).orElse(null),
fadeType = javaType.fadeType(),
startTimeOffset = javaType.startTimeOffset().map({ args0 -> args0 }).orElse(null),
xy = javaType.xy().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.transcoder.kotlin.outputs.JobTemplateConfigOverlayAnimationAnimationFadeXy.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy