com.pulumi.awsnative.iotwireless.kotlin.outputs.WirelessDeviceOtaaV11.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.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property appKey The AppKey is a secret key, which you should handle in a similar way as you would an application password. You can protect the AppKey value by storing it in the AWS Secrets Manager and use the [secretsmanager](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/dynamic-references.html#dynamic-references-secretsmanager) to reference this value.
* @property joinEui The JoinEUI value.
* @property nwkKey The NwkKey is a secret key, which you should handle in a similar way as you would an application password. You can protect the NwkKey value by storing it in the AWS Secrets Manager and use the [secretsmanager](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/dynamic-references.html#dynamic-references-secretsmanager) to reference this value.
*/
public data class WirelessDeviceOtaaV11(
public val appKey: String,
public val joinEui: String,
public val nwkKey: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.iotwireless.outputs.WirelessDeviceOtaaV11): WirelessDeviceOtaaV11 = WirelessDeviceOtaaV11(
appKey = javaType.appKey(),
joinEui = javaType.joinEui(),
nwkKey = javaType.nwkKey(),
)
}
}