![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.pipes.kotlin.inputs.PipeBatchArrayPropertiesArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.pipes.kotlin.inputs
import com.pulumi.awsnative.pipes.inputs.PipeBatchArrayPropertiesArgs.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.
*/
public data class PipeBatchArrayPropertiesArgs(
public val size: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.pipes.inputs.PipeBatchArrayPropertiesArgs =
com.pulumi.awsnative.pipes.inputs.PipeBatchArrayPropertiesArgs.builder()
.size(size?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PipeBatchArrayPropertiesArgs].
*/
@PulumiTagMarker
public class PipeBatchArrayPropertiesArgsBuilder internal constructor() {
private var size: Output? = null
/**
* @param value The size of the array, if this is an array batch job.
*/
@JvmName("nrstljuncrjxvpyh")
public suspend fun size(`value`: Output) {
this.size = value
}
/**
* @param value The size of the array, if this is an array batch job.
*/
@JvmName("yqagfljbrcjywhud")
public suspend fun size(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.size = mapped
}
internal fun build(): PipeBatchArrayPropertiesArgs = PipeBatchArrayPropertiesArgs(
size = size,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy