com.pulumi.awsnative.iotwireless.kotlin.inputs.WirelessGatewayLoRaWanGatewayArgs.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.iotwireless.kotlin.inputs
import com.pulumi.awsnative.iotwireless.inputs.WirelessGatewayLoRaWanGatewayArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property gatewayEui The gateway's EUI value.
* @property rfRegion The frequency band (RFRegion) value.
*/
public data class WirelessGatewayLoRaWanGatewayArgs(
public val gatewayEui: Output,
public val rfRegion: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iotwireless.inputs.WirelessGatewayLoRaWanGatewayArgs =
com.pulumi.awsnative.iotwireless.inputs.WirelessGatewayLoRaWanGatewayArgs.builder()
.gatewayEui(gatewayEui.applyValue({ args0 -> args0 }))
.rfRegion(rfRegion.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WirelessGatewayLoRaWanGatewayArgs].
*/
@PulumiTagMarker
public class WirelessGatewayLoRaWanGatewayArgsBuilder internal constructor() {
private var gatewayEui: Output? = null
private var rfRegion: Output? = null
/**
* @param value The gateway's EUI value.
*/
@JvmName("wrskhrhulpwpttei")
public suspend fun gatewayEui(`value`: Output) {
this.gatewayEui = value
}
/**
* @param value The frequency band (RFRegion) value.
*/
@JvmName("qitjubohkvnnfarp")
public suspend fun rfRegion(`value`: Output) {
this.rfRegion = value
}
/**
* @param value The gateway's EUI value.
*/
@JvmName("jwojcrbdqavkbcey")
public suspend fun gatewayEui(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.gatewayEui = mapped
}
/**
* @param value The frequency band (RFRegion) value.
*/
@JvmName("halmguvrugaiecqb")
public suspend fun rfRegion(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.rfRegion = mapped
}
internal fun build(): WirelessGatewayLoRaWanGatewayArgs = WirelessGatewayLoRaWanGatewayArgs(
gatewayEui = gatewayEui ?: throw PulumiNullFieldException("gatewayEui"),
rfRegion = rfRegion ?: throw PulumiNullFieldException("rfRegion"),
)
}