![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.sagemaker.kotlin.outputs.Device.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Edge device you want to create
* @property description Description of the device
* @property deviceName The name of the device
* @property iotThingName AWS Internet of Things (IoT) object name.
*/
public data class Device(
public val description: String? = null,
public val deviceName: String,
public val iotThingName: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.Device): Device = Device(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
deviceName = javaType.deviceName(),
iotThingName = javaType.iotThingName().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy