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

com.pulumi.azure.media.kotlin.inputs.TransformOutputCustomPresetCodecCopyVideoArgs.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.media.kotlin.inputs

import com.pulumi.azure.media.inputs.TransformOutputCustomPresetCodecCopyVideoArgs.builder
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

/**
 *
 * @property label Specifies the label for the codec. The label can be used to control muxing behavior.
 */
public data class TransformOutputCustomPresetCodecCopyVideoArgs(
    public val label: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.media.inputs.TransformOutputCustomPresetCodecCopyVideoArgs = com.pulumi.azure.media.inputs.TransformOutputCustomPresetCodecCopyVideoArgs.builder()
        .label(label?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [TransformOutputCustomPresetCodecCopyVideoArgs].
 */
@PulumiTagMarker
public class TransformOutputCustomPresetCodecCopyVideoArgsBuilder internal constructor() {
    private var label: Output? = null

    /**
     * @param value Specifies the label for the codec. The label can be used to control muxing behavior.
     */
    @JvmName("gkilloekyijfcsxe")
    public suspend fun label(`value`: Output) {
        this.label = value
    }

    /**
     * @param value Specifies the label for the codec. The label can be used to control muxing behavior.
     */
    @JvmName("xgodqjayasotcwqw")
    public suspend fun label(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.label = mapped
    }

    internal fun build(): TransformOutputCustomPresetCodecCopyVideoArgs =
        TransformOutputCustomPresetCodecCopyVideoArgs(
            label = label,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy