com.pulumi.awsnative.groundstation.kotlin.inputs.ConfigAntennaDownlinkDemodDecodeConfigArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.groundstation.kotlin.inputs
import com.pulumi.awsnative.groundstation.inputs.ConfigAntennaDownlinkDemodDecodeConfigArgs.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.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property decodeConfig Defines how the RF signal will be decoded.
* @property demodulationConfig Defines how the RF signal will be demodulated.
* @property spectrumConfig Defines the spectrum configuration.
*/
public data class ConfigAntennaDownlinkDemodDecodeConfigArgs(
public val decodeConfig: Output? = null,
public val demodulationConfig: Output? = null,
public val spectrumConfig: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.groundstation.inputs.ConfigAntennaDownlinkDemodDecodeConfigArgs =
com.pulumi.awsnative.groundstation.inputs.ConfigAntennaDownlinkDemodDecodeConfigArgs.builder()
.decodeConfig(decodeConfig?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.demodulationConfig(
demodulationConfig?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.spectrumConfig(
spectrumConfig?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [ConfigAntennaDownlinkDemodDecodeConfigArgs].
*/
@PulumiTagMarker
public class ConfigAntennaDownlinkDemodDecodeConfigArgsBuilder internal constructor() {
private var decodeConfig: Output? = null
private var demodulationConfig: Output? = null
private var spectrumConfig: Output? = null
/**
* @param value Defines how the RF signal will be decoded.
*/
@JvmName("iiilpkmhkhdxqkmm")
public suspend fun decodeConfig(`value`: Output) {
this.decodeConfig = value
}
/**
* @param value Defines how the RF signal will be demodulated.
*/
@JvmName("slreqajtfbvjtnby")
public suspend fun demodulationConfig(`value`: Output) {
this.demodulationConfig = value
}
/**
* @param value Defines the spectrum configuration.
*/
@JvmName("nmdvegmickgfjpcg")
public suspend fun spectrumConfig(`value`: Output) {
this.spectrumConfig = value
}
/**
* @param value Defines how the RF signal will be decoded.
*/
@JvmName("lfowjirflifxwmdp")
public suspend fun decodeConfig(`value`: ConfigDecodeConfigArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.decodeConfig = mapped
}
/**
* @param argument Defines how the RF signal will be decoded.
*/
@JvmName("kdteettfcoivgclk")
public suspend fun decodeConfig(argument: suspend ConfigDecodeConfigArgsBuilder.() -> Unit) {
val toBeMapped = ConfigDecodeConfigArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.decodeConfig = mapped
}
/**
* @param value Defines how the RF signal will be demodulated.
*/
@JvmName("qbxuverotaycoxrq")
public suspend fun demodulationConfig(`value`: ConfigDemodulationConfigArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.demodulationConfig = mapped
}
/**
* @param argument Defines how the RF signal will be demodulated.
*/
@JvmName("mhvlhqqfupdnopfk")
public suspend fun demodulationConfig(argument: suspend ConfigDemodulationConfigArgsBuilder.() -> Unit) {
val toBeMapped = ConfigDemodulationConfigArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.demodulationConfig = mapped
}
/**
* @param value Defines the spectrum configuration.
*/
@JvmName("jlqqpmpaggorteqk")
public suspend fun spectrumConfig(`value`: ConfigSpectrumConfigArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.spectrumConfig = mapped
}
/**
* @param argument Defines the spectrum configuration.
*/
@JvmName("rbtyewhcydxvkpqw")
public suspend fun spectrumConfig(argument: suspend ConfigSpectrumConfigArgsBuilder.() -> Unit) {
val toBeMapped = ConfigSpectrumConfigArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.spectrumConfig = mapped
}
internal fun build(): ConfigAntennaDownlinkDemodDecodeConfigArgs =
ConfigAntennaDownlinkDemodDecodeConfigArgs(
decodeConfig = decodeConfig,
demodulationConfig = demodulationConfig,
spectrumConfig = spectrumConfig,
)
}