
com.pulumi.awsnative.cleanrooms.kotlin.outputs.MembershipProtectedQueryS3OutputConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.cleanrooms.kotlin.outputs
import com.pulumi.awsnative.cleanrooms.kotlin.enums.MembershipResultFormat
import kotlin.String
import kotlin.Suppress
/**
*
* @property bucket The S3 bucket to unload the protected query results.
* @property keyPrefix The S3 prefix to unload the protected query results.
* @property resultFormat Intended file format of the result.
*/
public data class MembershipProtectedQueryS3OutputConfiguration(
public val bucket: String,
public val keyPrefix: String? = null,
public val resultFormat: MembershipResultFormat,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.cleanrooms.outputs.MembershipProtectedQueryS3OutputConfiguration): MembershipProtectedQueryS3OutputConfiguration =
MembershipProtectedQueryS3OutputConfiguration(
bucket = javaType.bucket(),
keyPrefix = javaType.keyPrefix().map({ args0 -> args0 }).orElse(null),
resultFormat = javaType.resultFormat().let({ args0 ->
com.pulumi.awsnative.cleanrooms.kotlin.enums.MembershipResultFormat.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy