
com.pulumi.awsnative.ec2.kotlin.inputs.Ec2FleetNetworkBandwidthGbpsRequestArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.inputs
import com.pulumi.awsnative.ec2.inputs.Ec2FleetNetworkBandwidthGbpsRequestArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Double
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property max The maximum amount of network bandwidth, in Gbps. To specify no maximum limit, omit this parameter.
* @property min The minimum amount of network bandwidth, in Gbps. To specify no minimum limit, omit this parameter.
*/
public data class Ec2FleetNetworkBandwidthGbpsRequestArgs(
public val max: Output? = null,
public val min: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.ec2.inputs.Ec2FleetNetworkBandwidthGbpsRequestArgs =
com.pulumi.awsnative.ec2.inputs.Ec2FleetNetworkBandwidthGbpsRequestArgs.builder()
.max(max?.applyValue({ args0 -> args0 }))
.min(min?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [Ec2FleetNetworkBandwidthGbpsRequestArgs].
*/
@PulumiTagMarker
public class Ec2FleetNetworkBandwidthGbpsRequestArgsBuilder internal constructor() {
private var max: Output? = null
private var min: Output? = null
/**
* @param value The maximum amount of network bandwidth, in Gbps. To specify no maximum limit, omit this parameter.
*/
@JvmName("varfrluahlumkmaf")
public suspend fun max(`value`: Output) {
this.max = value
}
/**
* @param value The minimum amount of network bandwidth, in Gbps. To specify no minimum limit, omit this parameter.
*/
@JvmName("ygytradhvvrropnq")
public suspend fun min(`value`: Output) {
this.min = value
}
/**
* @param value The maximum amount of network bandwidth, in Gbps. To specify no maximum limit, omit this parameter.
*/
@JvmName("wadosuejuypldpnh")
public suspend fun max(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.max = mapped
}
/**
* @param value The minimum amount of network bandwidth, in Gbps. To specify no minimum limit, omit this parameter.
*/
@JvmName("rglkmsdokyspqvjy")
public suspend fun min(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.min = mapped
}
internal fun build(): Ec2FleetNetworkBandwidthGbpsRequestArgs =
Ec2FleetNetworkBandwidthGbpsRequestArgs(
max = max,
min = min,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy