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

com.pulumi.gcp.transcoder.kotlin.outputs.JobTemplateConfigOverlayAnimationAnimationFade.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.13.1.0
Show newest version
@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