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

com.pulumi.awsnative.groundstation.kotlin.outputs.ConfigUplinkSpectrumConfig.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.groundstation.kotlin.outputs

import com.pulumi.awsnative.groundstation.kotlin.enums.ConfigPolarization
import kotlin.Suppress

/**
 *
 * @property centerFrequency The center frequency of the spectrum. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.
 * @property polarization The polarization of the spectrum. Valid values are `"RIGHT_HAND"` and `"LEFT_HAND"` .
 */
public data class ConfigUplinkSpectrumConfig(
    public val centerFrequency: ConfigFrequency? = null,
    public val polarization: ConfigPolarization? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.groundstation.outputs.ConfigUplinkSpectrumConfig): ConfigUplinkSpectrumConfig = ConfigUplinkSpectrumConfig(
            centerFrequency = javaType.centerFrequency().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.groundstation.kotlin.outputs.ConfigFrequency.Companion.toKotlin(args0)
                })
            }).orElse(null),
            polarization = javaType.polarization().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.groundstation.kotlin.enums.ConfigPolarization.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy