com.pulumi.awsnative.dynamodb.kotlin.inputs.GlobalTableReadOnDemandThroughputSettingsArgs.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.dynamodb.kotlin.inputs
import com.pulumi.awsnative.dynamodb.inputs.GlobalTableReadOnDemandThroughputSettingsArgs.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 maxReadRequestUnits Maximum number of read request units for the specified replica of a global table.
*/
public data class GlobalTableReadOnDemandThroughputSettingsArgs(
public val maxReadRequestUnits: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.dynamodb.inputs.GlobalTableReadOnDemandThroughputSettingsArgs =
com.pulumi.awsnative.dynamodb.inputs.GlobalTableReadOnDemandThroughputSettingsArgs.builder()
.maxReadRequestUnits(maxReadRequestUnits?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [GlobalTableReadOnDemandThroughputSettingsArgs].
*/
@PulumiTagMarker
public class GlobalTableReadOnDemandThroughputSettingsArgsBuilder internal constructor() {
private var maxReadRequestUnits: Output? = null
/**
* @param value Maximum number of read request units for the specified replica of a global table.
*/
@JvmName("jbcykkqcigqrtyuc")
public suspend fun maxReadRequestUnits(`value`: Output) {
this.maxReadRequestUnits = value
}
/**
* @param value Maximum number of read request units for the specified replica of a global table.
*/
@JvmName("lgqhkipsjuwcqpss")
public suspend fun maxReadRequestUnits(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.maxReadRequestUnits = mapped
}
internal fun build(): GlobalTableReadOnDemandThroughputSettingsArgs =
GlobalTableReadOnDemandThroughputSettingsArgs(
maxReadRequestUnits = maxReadRequestUnits,
)
}