com.pulumi.awsnative.sagemaker.kotlin.outputs.DeviceFleetEdgeOutputConfig.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.sagemaker.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property kmsKeyId The KMS key id used for encryption on the S3 bucket
* @property s3OutputLocation The Amazon Simple Storage (S3) bucket URI
*/
public data class DeviceFleetEdgeOutputConfig(
public val kmsKeyId: String? = null,
public val s3OutputLocation: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.DeviceFleetEdgeOutputConfig): DeviceFleetEdgeOutputConfig = DeviceFleetEdgeOutputConfig(
kmsKeyId = javaType.kmsKeyId().map({ args0 -> args0 }).orElse(null),
s3OutputLocation = javaType.s3OutputLocation(),
)
}
}