![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iotwireless.kotlin.outputs.TaskDefinitionUpdateWirelessGatewayTaskCreate.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iotwireless.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property loRaWan The properties that relate to the LoRaWAN wireless gateway.
* @property updateDataRole The IAM role used to read data from the S3 bucket.
* @property updateDataSource The link to the S3 bucket.
*/
public data class TaskDefinitionUpdateWirelessGatewayTaskCreate(
public val loRaWan: TaskDefinitionLoRaWanUpdateGatewayTaskCreate? = null,
public val updateDataRole: String? = null,
public val updateDataSource: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.iotwireless.outputs.TaskDefinitionUpdateWirelessGatewayTaskCreate): TaskDefinitionUpdateWirelessGatewayTaskCreate =
TaskDefinitionUpdateWirelessGatewayTaskCreate(
loRaWan = javaType.loRaWan().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.iotwireless.kotlin.outputs.TaskDefinitionLoRaWanUpdateGatewayTaskCreate.Companion.toKotlin(args0)
})
}).orElse(null),
updateDataRole = javaType.updateDataRole().map({ args0 -> args0 }).orElse(null),
updateDataSource = javaType.updateDataSource().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy