com.pulumi.aws.medialive.kotlin.inputs.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.medialive.kotlin.inputs
import com.pulumi.aws.medialive.inputs.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property containerSettings Settings specific to the container type of the file. See Container Settings for more details.
* @property extension Output file extension.
* @property nameModifier String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
*/
public data class ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgs(
public val containerSettings: Output? =
null,
public val extension: Output? = null,
public val nameModifier: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.medialive.inputs.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgs =
com.pulumi.aws.medialive.inputs.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgs.builder()
.containerSettings(containerSettings?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.extension(extension?.applyValue({ args0 -> args0 }))
.nameModifier(nameModifier?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgs].
*/
@PulumiTagMarker
public class ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgsBuilder
internal constructor() {
private var containerSettings:
Output? =
null
private var extension: Output? = null
private var nameModifier: Output? = null
/**
* @param value Settings specific to the container type of the file. See Container Settings for more details.
*/
@JvmName("ussiemyqxncdimlo")
public suspend fun containerSettings(`value`: Output) {
this.containerSettings = value
}
/**
* @param value Output file extension.
*/
@JvmName("tpoumuxqgdwmgjvm")
public suspend fun extension(`value`: Output) {
this.extension = value
}
/**
* @param value String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
*/
@JvmName("hioimetobevshrds")
public suspend fun nameModifier(`value`: Output) {
this.nameModifier = value
}
/**
* @param value Settings specific to the container type of the file. See Container Settings for more details.
*/
@JvmName("rcboetubghjskvyj")
public suspend fun containerSettings(`value`: ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.containerSettings = mapped
}
/**
* @param argument Settings specific to the container type of the file. See Container Settings for more details.
*/
@JvmName("rbyaobjvmkxucgmu")
public suspend fun containerSettings(argument: suspend ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsArgsBuilder.() -> Unit) {
val toBeMapped =
ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.containerSettings = mapped
}
/**
* @param value Output file extension.
*/
@JvmName("pnfpwflaccppfwjx")
public suspend fun extension(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.extension = mapped
}
/**
* @param value String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
*/
@JvmName("hqicifukentjppoi")
public suspend fun nameModifier(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.nameModifier = mapped
}
internal fun build(): ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgs =
ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgs(
containerSettings = containerSettings,
extension = extension,
nameModifier = nameModifier,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy