
com.pulumi.awsnative.sagemaker.kotlin.outputs.GetDeviceFleetResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.outputs
import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property description Description for the edge device fleet
* @property outputConfig S3 bucket and an ecryption key id (if available) to store outputs for the fleet
* @property roleArn Role associated with the device fleet
* @property tags Associate tags with the resource
*/
public data class GetDeviceFleetResult(
public val description: String? = null,
public val outputConfig: DeviceFleetEdgeOutputConfig? = null,
public val roleArn: String? = null,
public val tags: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.GetDeviceFleetResult): GetDeviceFleetResult = GetDeviceFleetResult(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
outputConfig = javaType.outputConfig().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.sagemaker.kotlin.outputs.DeviceFleetEdgeOutputConfig.Companion.toKotlin(args0)
})
}).orElse(null),
roleArn = javaType.roleArn().map({ args0 -> args0 }).orElse(null),
tags = javaType.tags().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy