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

com.pulumi.awsnative.groundstation.kotlin.inputs.ConfigEirpArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.groundstation.kotlin.inputs

import com.pulumi.awsnative.groundstation.inputs.ConfigEirpArgs.builder
import com.pulumi.awsnative.groundstation.kotlin.enums.ConfigEirpUnits
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Double
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property units The units of the EIRP.
 * @property value The value of the EIRP. Valid values are between 20.0 to 50.0 dBW.
 */
public data class ConfigEirpArgs(
    public val units: Output? = null,
    public val `value`: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.groundstation.inputs.ConfigEirpArgs =
        com.pulumi.awsnative.groundstation.inputs.ConfigEirpArgs.builder()
            .units(units?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .`value`(`value`?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ConfigEirpArgs].
 */
@PulumiTagMarker
public class ConfigEirpArgsBuilder internal constructor() {
    private var units: Output? = null

    private var `value`: Output? = null

    /**
     * @param value The units of the EIRP.
     */
    @JvmName("rxbvimyduaifhown")
    public suspend fun units(`value`: Output) {
        this.units = value
    }

    /**
     * @param value The value of the EIRP. Valid values are between 20.0 to 50.0 dBW.
     */
    @JvmName("qcrfjmlirmefkevn")
    public suspend fun `value`(`value`: Output) {
        this.`value` = value
    }

    /**
     * @param value The units of the EIRP.
     */
    @JvmName("rxgaxvgatgskebjl")
    public suspend fun units(`value`: ConfigEirpUnits?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.units = mapped
    }

    /**
     * @param value The value of the EIRP. Valid values are between 20.0 to 50.0 dBW.
     */
    @JvmName("hfgccpwrobhghvgq")
    public suspend fun `value`(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.`value` = mapped
    }

    internal fun build(): ConfigEirpArgs = ConfigEirpArgs(
        units = units,
        `value` = `value`,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy