com.pulumi.awsnative.kinesisfirehose.kotlin.outputs.DeliveryStreamProcessorParameter.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.kinesisfirehose.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @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 DeliveryStreamProcessorParameter(
public val parameterName: String,
public val parameterValue: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.kinesisfirehose.outputs.DeliveryStreamProcessorParameter): DeliveryStreamProcessorParameter = DeliveryStreamProcessorParameter(
parameterName = javaType.parameterName(),
parameterValue = javaType.parameterValue(),
)
}
}