com.pulumi.awsnative.msk.kotlin.outputs.ClusterFirehose.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.msk.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property deliveryStream The Kinesis Data Firehose delivery stream that is the destination for broker logs.
* @property enabled Specifies whether broker logs get sent to the specified Kinesis Data Firehose delivery stream.
*/
public data class ClusterFirehose(
public val deliveryStream: String? = null,
public val enabled: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.msk.outputs.ClusterFirehose): ClusterFirehose = ClusterFirehose(
deliveryStream = javaType.deliveryStream().map({ args0 -> args0 }).orElse(null),
enabled = javaType.enabled(),
)
}
}