FixedOrPercentArgs

data class FixedOrPercentArgs(val fixed: Output<Int>? = null, val percent: Output<Int>? = null) : ConvertibleToJava<FixedOrPercentArgs>

Message encapsulating a value that can be either absolute ("fixed") or relative ("percent") to a value.

Constructors

Link copied to clipboard
fun FixedOrPercentArgs(fixed: Output<Int>? = null, percent: Output<Int>? = null)

Functions

Link copied to clipboard
open override fun toJava(): FixedOrPercentArgs

Properties

Link copied to clipboard
val fixed: Output<Int>? = null

Specifies a fixed value.

Link copied to clipboard
val percent: Output<Int>? = null

Specifies the relative value defined as a percentage, which will be multiplied by a reference value.