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

com.pulumi.awsnative.sagemaker.kotlin.outputs.DeviceFleetEdgeOutputConfig.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: 1.11.0.0
Show newest version
@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(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy