
com.pulumi.awsnative.kinesisfirehose.kotlin.inputs.DeliveryStreamProcessorParameterArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.kinesisfirehose.kotlin.inputs
import com.pulumi.awsnative.kinesisfirehose.inputs.DeliveryStreamProcessorParameterArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property parameterName The name of the parameter. Currently the following default values are supported: 3 for `NumberOfRetries` and 60 for the `BufferIntervalInSeconds` . The `BufferSizeInMBs` ranges between 0.2 MB and up to 3MB. The default buffering hint is 1MB for all destinations, except Splunk. For Splunk, the default buffering hint is 256 KB.
* @property parameterValue The parameter value.
*/
public data class DeliveryStreamProcessorParameterArgs(
public val parameterName: Output,
public val parameterValue: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.kinesisfirehose.inputs.DeliveryStreamProcessorParameterArgs =
com.pulumi.awsnative.kinesisfirehose.inputs.DeliveryStreamProcessorParameterArgs.builder()
.parameterName(parameterName.applyValue({ args0 -> args0 }))
.parameterValue(parameterValue.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DeliveryStreamProcessorParameterArgs].
*/
@PulumiTagMarker
public class DeliveryStreamProcessorParameterArgsBuilder internal constructor() {
private var parameterName: Output? = null
private var parameterValue: Output? = null
/**
* @param value The name of the parameter. Currently the following default values are supported: 3 for `NumberOfRetries` and 60 for the `BufferIntervalInSeconds` . The `BufferSizeInMBs` ranges between 0.2 MB and up to 3MB. The default buffering hint is 1MB for all destinations, except Splunk. For Splunk, the default buffering hint is 256 KB.
*/
@JvmName("pwlmkrvnsixpmdjd")
public suspend fun parameterName(`value`: Output) {
this.parameterName = value
}
/**
* @param value The parameter value.
*/
@JvmName("sxbnjpcfrfggvfag")
public suspend fun parameterValue(`value`: Output) {
this.parameterValue = value
}
/**
* @param value The name of the parameter. Currently the following default values are supported: 3 for `NumberOfRetries` and 60 for the `BufferIntervalInSeconds` . The `BufferSizeInMBs` ranges between 0.2 MB and up to 3MB. The default buffering hint is 1MB for all destinations, except Splunk. For Splunk, the default buffering hint is 256 KB.
*/
@JvmName("djmspgoflqancxgf")
public suspend fun parameterName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.parameterName = mapped
}
/**
* @param value The parameter value.
*/
@JvmName("uswoageaqgvgqcqm")
public suspend fun parameterValue(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.parameterValue = mapped
}
internal fun build(): DeliveryStreamProcessorParameterArgs = DeliveryStreamProcessorParameterArgs(
parameterName = parameterName ?: throw PulumiNullFieldException("parameterName"),
parameterValue = parameterValue ?: throw PulumiNullFieldException("parameterValue"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy