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

com.pulumi.aws.medialive.kotlin.inputs.InputDestinationArgs.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.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.medialive.kotlin.inputs

import com.pulumi.aws.medialive.inputs.InputDestinationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property streamName A unique name for the location the RTMP stream is being pushed to.
 */
public data class InputDestinationArgs(
    public val streamName: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.medialive.inputs.InputDestinationArgs =
        com.pulumi.aws.medialive.inputs.InputDestinationArgs.builder()
            .streamName(streamName.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [InputDestinationArgs].
 */
@PulumiTagMarker
public class InputDestinationArgsBuilder internal constructor() {
    private var streamName: Output? = null

    /**
     * @param value A unique name for the location the RTMP stream is being pushed to.
     */
    @JvmName("jhxpyxiftfvtouak")
    public suspend fun streamName(`value`: Output) {
        this.streamName = value
    }

    /**
     * @param value A unique name for the location the RTMP stream is being pushed to.
     */
    @JvmName("eapvutfbebqhsmuw")
    public suspend fun streamName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.streamName = mapped
    }

    internal fun build(): InputDestinationArgs = InputDestinationArgs(
        streamName = streamName ?: throw PulumiNullFieldException("streamName"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy