![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.groundstation.kotlin.outputs.ConfigEirp.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.groundstation.kotlin.outputs
import com.pulumi.awsnative.groundstation.kotlin.enums.ConfigEirpUnits
import kotlin.Double
import kotlin.Suppress
/**
*
* @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 ConfigEirp(
public val units: ConfigEirpUnits? = null,
public val `value`: Double? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.groundstation.outputs.ConfigEirp): ConfigEirp = ConfigEirp(
units = javaType.units().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.groundstation.kotlin.enums.ConfigEirpUnits.Companion.toKotlin(args0)
})
}).orElse(null),
`value` = javaType.`value`().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy