com.pulumi.aws.medialive.kotlin.inputs.ChannelEncoderSettingsOutputGroupOutputOutputSettingsUdpOutputSettingsContainerSettingsM2tsSettingsDvbSdtSettingsArgs.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.ChannelEncoderSettingsOutputGroupOutputOutputSettingsUdpOutputSettingsContainerSettingsM2tsSettingsDvbSdtSettingsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property outputSdt
* @property repInterval
* @property serviceName
* @property serviceProviderName
*/
public data class
ChannelEncoderSettingsOutputGroupOutputOutputSettingsUdpOutputSettingsContainerSettingsM2tsSettingsDvbSdtSettingsArgs(
public val outputSdt: Output? = null,
public val repInterval: Output? = null,
public val serviceName: Output? = null,
public val serviceProviderName: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.medialive.inputs.ChannelEncoderSettingsOutputGroupOutputOutputSettingsUdpOutputSettingsContainerSettingsM2tsSettingsDvbSdtSettingsArgs =
com.pulumi.aws.medialive.inputs.ChannelEncoderSettingsOutputGroupOutputOutputSettingsUdpOutputSettingsContainerSettingsM2tsSettingsDvbSdtSettingsArgs.builder()
.outputSdt(outputSdt?.applyValue({ args0 -> args0 }))
.repInterval(repInterval?.applyValue({ args0 -> args0 }))
.serviceName(serviceName?.applyValue({ args0 -> args0 }))
.serviceProviderName(serviceProviderName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ChannelEncoderSettingsOutputGroupOutputOutputSettingsUdpOutputSettingsContainerSettingsM2tsSettingsDvbSdtSettingsArgs].
*/
@PulumiTagMarker
public class
ChannelEncoderSettingsOutputGroupOutputOutputSettingsUdpOutputSettingsContainerSettingsM2tsSettingsDvbSdtSettingsArgsBuilder
internal constructor() {
private var outputSdt: Output? = null
private var repInterval: Output? = null
private var serviceName: Output? = null
private var serviceProviderName: Output? = null
/**
* @param value
*/
@JvmName("wpbnyumcydmdcgck")
public suspend fun outputSdt(`value`: Output) {
this.outputSdt = value
}
/**
* @param value
*/
@JvmName("ostrrbglcnougqft")
public suspend fun repInterval(`value`: Output) {
this.repInterval = value
}
/**
* @param value
*/
@JvmName("vomxoycruqrmoomu")
public suspend fun serviceName(`value`: Output) {
this.serviceName = value
}
/**
* @param value
*/
@JvmName("aencycdxonmqlxbx")
public suspend fun serviceProviderName(`value`: Output) {
this.serviceProviderName = value
}
/**
* @param value
*/
@JvmName("xevksgbgdxlcwtne")
public suspend fun outputSdt(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.outputSdt = mapped
}
/**
* @param value
*/
@JvmName("hhbjxrveedybqpar")
public suspend fun repInterval(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.repInterval = mapped
}
/**
* @param value
*/
@JvmName("voducodeqokavbuo")
public suspend fun serviceName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.serviceName = mapped
}
/**
* @param value
*/
@JvmName("lweoimhbfbkrcthh")
public suspend fun serviceProviderName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.serviceProviderName = mapped
}
internal fun build(): ChannelEncoderSettingsOutputGroupOutputOutputSettingsUdpOutputSettingsContainerSettingsM2tsSettingsDvbSdtSettingsArgs =
ChannelEncoderSettingsOutputGroupOutputOutputSettingsUdpOutputSettingsContainerSettingsM2tsSettingsDvbSdtSettingsArgs(
outputSdt = outputSdt,
repInterval = repInterval,
serviceName = serviceName,
serviceProviderName = serviceProviderName,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy