All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.kinesisfirehose.kotlin.outputs.DeliveryStreamSplunkBufferingHints.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.kinesisfirehose.kotlin.outputs

import kotlin.Int
import kotlin.Suppress

/**
 *
 * @property intervalInSeconds Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 60 (1 minute).
 * @property sizeInMbs Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.
 */
public data class DeliveryStreamSplunkBufferingHints(
    public val intervalInSeconds: Int? = null,
    public val sizeInMbs: Int? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.kinesisfirehose.outputs.DeliveryStreamSplunkBufferingHints): DeliveryStreamSplunkBufferingHints = DeliveryStreamSplunkBufferingHints(
            intervalInSeconds = javaType.intervalInSeconds().map({ args0 -> args0 }).orElse(null),
            sizeInMbs = javaType.sizeInMbs().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy