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

com.pulumi.awsnative.events.kotlin.inputs.RuleBatchArrayPropertiesArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.events.kotlin.inputs

import com.pulumi.awsnative.events.inputs.RuleBatchArrayPropertiesArgs.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 size The size of the array, if this is an array batch job. Valid values are integers between 2 and 10,000.
 */
public data class RuleBatchArrayPropertiesArgs(
    public val size: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.events.inputs.RuleBatchArrayPropertiesArgs =
        com.pulumi.awsnative.events.inputs.RuleBatchArrayPropertiesArgs.builder()
            .size(size?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [RuleBatchArrayPropertiesArgs].
 */
@PulumiTagMarker
public class RuleBatchArrayPropertiesArgsBuilder internal constructor() {
    private var size: Output? = null

    /**
     * @param value The size of the array, if this is an array batch job. Valid values are integers between 2 and 10,000.
     */
    @JvmName("ppcwgwqkmmqfjyxv")
    public suspend fun size(`value`: Output) {
        this.size = value
    }

    /**
     * @param value The size of the array, if this is an array batch job. Valid values are integers between 2 and 10,000.
     */
    @JvmName("eeuuyaanqnqsdyuj")
    public suspend fun size(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.size = mapped
    }

    internal fun build(): RuleBatchArrayPropertiesArgs = RuleBatchArrayPropertiesArgs(
        size = size,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy