![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.msk.kotlin.outputs.ClusterS3.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.msk.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property bucket The name of the S3 bucket that is the destination for broker logs.
* @property enabled Specifies whether broker logs get sent to the specified Amazon S3 destination.
* @property prefix The S3 prefix that is the destination for broker logs.
*/
public data class ClusterS3(
public val bucket: String? = null,
public val enabled: Boolean,
public val prefix: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.msk.outputs.ClusterS3): ClusterS3 =
ClusterS3(
bucket = javaType.bucket().map({ args0 -> args0 }).orElse(null),
enabled = javaType.enabled(),
prefix = javaType.prefix().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy