com.pulumi.awsnative.appstream.kotlin.outputs.ApplicationS3Location.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.appstream.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property s3Bucket The S3 bucket of the S3 object.
* @property s3Key The S3 key of the S3 object.
*/
public data class ApplicationS3Location(
public val s3Bucket: String,
public val s3Key: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.appstream.outputs.ApplicationS3Location): ApplicationS3Location = ApplicationS3Location(
s3Bucket = javaType.s3Bucket(),
s3Key = javaType.s3Key(),
)
}
}