![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.kinesisfirehose.kotlin.inputs.DeliveryStreamElasticsearchBufferingHintsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.kinesisfirehose.kotlin.inputs
import com.pulumi.awsnative.kinesisfirehose.inputs.DeliveryStreamElasticsearchBufferingHintsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property intervalInSeconds The length of time, in seconds, that Kinesis Data Firehose buffers incoming data before delivering it to the destination. For valid values, see the `IntervalInSeconds` content for the [BufferingHints](https://docs.aws.amazon.com/firehose/latest/APIReference/API_BufferingHints.html) data type in the *Amazon Kinesis Data Firehose API Reference* .
* @property sizeInMbs The size of the buffer, in MBs, that Kinesis Data Firehose uses for incoming data before delivering it to the destination. For valid values, see the `SizeInMBs` content for the [BufferingHints](https://docs.aws.amazon.com/firehose/latest/APIReference/API_BufferingHints.html) data type in the *Amazon Kinesis Data Firehose API Reference* .
*/
public data class DeliveryStreamElasticsearchBufferingHintsArgs(
public val intervalInSeconds: Output? = null,
public val sizeInMbs: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.kinesisfirehose.inputs.DeliveryStreamElasticsearchBufferingHintsArgs =
com.pulumi.awsnative.kinesisfirehose.inputs.DeliveryStreamElasticsearchBufferingHintsArgs.builder()
.intervalInSeconds(intervalInSeconds?.applyValue({ args0 -> args0 }))
.sizeInMbs(sizeInMbs?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DeliveryStreamElasticsearchBufferingHintsArgs].
*/
@PulumiTagMarker
public class DeliveryStreamElasticsearchBufferingHintsArgsBuilder internal constructor() {
private var intervalInSeconds: Output? = null
private var sizeInMbs: Output? = null
/**
* @param value The length of time, in seconds, that Kinesis Data Firehose buffers incoming data before delivering it to the destination. For valid values, see the `IntervalInSeconds` content for the [BufferingHints](https://docs.aws.amazon.com/firehose/latest/APIReference/API_BufferingHints.html) data type in the *Amazon Kinesis Data Firehose API Reference* .
*/
@JvmName("fdnmbcmottkondut")
public suspend fun intervalInSeconds(`value`: Output) {
this.intervalInSeconds = value
}
/**
* @param value The size of the buffer, in MBs, that Kinesis Data Firehose uses for incoming data before delivering it to the destination. For valid values, see the `SizeInMBs` content for the [BufferingHints](https://docs.aws.amazon.com/firehose/latest/APIReference/API_BufferingHints.html) data type in the *Amazon Kinesis Data Firehose API Reference* .
*/
@JvmName("mataavdhigxrukpv")
public suspend fun sizeInMbs(`value`: Output) {
this.sizeInMbs = value
}
/**
* @param value The length of time, in seconds, that Kinesis Data Firehose buffers incoming data before delivering it to the destination. For valid values, see the `IntervalInSeconds` content for the [BufferingHints](https://docs.aws.amazon.com/firehose/latest/APIReference/API_BufferingHints.html) data type in the *Amazon Kinesis Data Firehose API Reference* .
*/
@JvmName("bciaqhjsosyadvwl")
public suspend fun intervalInSeconds(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.intervalInSeconds = mapped
}
/**
* @param value The size of the buffer, in MBs, that Kinesis Data Firehose uses for incoming data before delivering it to the destination. For valid values, see the `SizeInMBs` content for the [BufferingHints](https://docs.aws.amazon.com/firehose/latest/APIReference/API_BufferingHints.html) data type in the *Amazon Kinesis Data Firehose API Reference* .
*/
@JvmName("iwcvnjkdsyhbllyo")
public suspend fun sizeInMbs(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sizeInMbs = mapped
}
internal fun build(): DeliveryStreamElasticsearchBufferingHintsArgs =
DeliveryStreamElasticsearchBufferingHintsArgs(
intervalInSeconds = intervalInSeconds,
sizeInMbs = sizeInMbs,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy