
com.pulumi.awsnative.kinesisfirehose.kotlin.outputs.DeliveryStreamOutputFormatConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.kinesisfirehose.kotlin.outputs
import kotlin.Suppress
/**
*
* @property serializer Specifies which serializer to use. You can choose either the ORC SerDe or the Parquet SerDe. If both are non-null, the server rejects the request.
*/
public data class DeliveryStreamOutputFormatConfiguration(
public val serializer: DeliveryStreamSerializer? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.kinesisfirehose.outputs.DeliveryStreamOutputFormatConfiguration): DeliveryStreamOutputFormatConfiguration = DeliveryStreamOutputFormatConfiguration(
serializer = javaType.serializer().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.kinesisfirehose.kotlin.outputs.DeliveryStreamSerializer.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy