com.pulumi.awsnative.bedrock.kotlin.outputs.FlowS3Location.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.bedrock.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A bucket, key and optional version pointing to an S3 object containing a UTF-8 encoded JSON string Definition with the same schema as the Definition property of this resource
* @property bucket A bucket in S3
* @property key A object key in S3
* @property version The version of the the S3 object to use
*/
public data class FlowS3Location(
public val bucket: String,
public val key: String,
public val version: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.bedrock.outputs.FlowS3Location): FlowS3Location = FlowS3Location(
bucket = javaType.bucket(),
key = javaType.key(),
version = javaType.version().map({ args0 -> args0 }).orElse(null),
)
}
}