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

com.pulumi.awsnative.iotwireless.kotlin.outputs.WirelessDeviceOtaaV11.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@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(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy