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

com.pulumi.awsnative.appstream.kotlin.outputs.AppBlockS3Location.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.appstream.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property s3Bucket The S3 bucket of the app block.
 * @property s3Key The S3 key of the S3 object of the virtual hard disk.
 * This is required when it's used by `SetupScriptDetails` and `PostSetupScriptDetails` .
 */
public data class AppBlockS3Location(
    public val s3Bucket: String,
    public val s3Key: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.appstream.outputs.AppBlockS3Location): AppBlockS3Location = AppBlockS3Location(
            s3Bucket = javaType.s3Bucket(),
            s3Key = javaType.s3Key().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy