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

com.pulumi.awsnative.dynamodb.kotlin.inputs.GlobalTableReadOnDemandThroughputSettingsArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@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,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy