com.pulumi.awsnative.ec2.kotlin.inputs.SpotFleetNetworkInterfaceCountRequestArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.inputs
import com.pulumi.awsnative.ec2.inputs.SpotFleetNetworkInterfaceCountRequestArgs.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 max The maximum number of network interfaces. To specify no maximum limit, omit this parameter.
* @property min The minimum number of network interfaces. To specify no minimum limit, omit this parameter.
*/
public data class SpotFleetNetworkInterfaceCountRequestArgs(
public val max: Output? = null,
public val min: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.ec2.inputs.SpotFleetNetworkInterfaceCountRequestArgs =
com.pulumi.awsnative.ec2.inputs.SpotFleetNetworkInterfaceCountRequestArgs.builder()
.max(max?.applyValue({ args0 -> args0 }))
.min(min?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SpotFleetNetworkInterfaceCountRequestArgs].
*/
@PulumiTagMarker
public class SpotFleetNetworkInterfaceCountRequestArgsBuilder internal constructor() {
private var max: Output? = null
private var min: Output? = null
/**
* @param value The maximum number of network interfaces. To specify no maximum limit, omit this parameter.
*/
@JvmName("xfslhweribxmebyp")
public suspend fun max(`value`: Output) {
this.max = value
}
/**
* @param value The minimum number of network interfaces. To specify no minimum limit, omit this parameter.
*/
@JvmName("fjlgeqnwdshxhkef")
public suspend fun min(`value`: Output) {
this.min = value
}
/**
* @param value The maximum number of network interfaces. To specify no maximum limit, omit this parameter.
*/
@JvmName("ychocdsjhcgddtxp")
public suspend fun max(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.max = mapped
}
/**
* @param value The minimum number of network interfaces. To specify no minimum limit, omit this parameter.
*/
@JvmName("tfompdnloxmbnfmu")
public suspend fun min(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.min = mapped
}
internal fun build(): SpotFleetNetworkInterfaceCountRequestArgs =
SpotFleetNetworkInterfaceCountRequestArgs(
max = max,
min = min,
)
}