ConfigurationPolicyParameterValueArgs

data class ConfigurationPolicyParameterValueArgs(val boolean: Output<Boolean>? = null, val double: Output<Double>? = null, val enum: Output<String>? = null, val enumList: Output<List<String>>? = null, val integer: Output<Int>? = null, val integerList: Output<List<Int>>? = null, val string: Output<String>? = null, val stringList: Output<List<String>>? = null) : ConvertibleToJava<ConfigurationPolicyParameterValueArgs>

An object that includes the data type of a security control parameter and its current value.

Constructors

Link copied to clipboard
constructor(boolean: Output<Boolean>? = null, double: Output<Double>? = null, enum: Output<String>? = null, enumList: Output<List<String>>? = null, integer: Output<Int>? = null, integerList: Output<List<Int>>? = null, string: Output<String>? = null, stringList: Output<List<String>>? = null)

Properties

Link copied to clipboard
val boolean: Output<Boolean>? = null

A control parameter that is a boolean.

Link copied to clipboard
val double: Output<Double>? = null

A control parameter that is a double.

Link copied to clipboard
val enum: Output<String>? = null

A control parameter that is an enum.

Link copied to clipboard
val enumList: Output<List<String>>? = null

A control parameter that is a list of enums.

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

A control parameter that is an integer.

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

A control parameter that is a list of integers.

Link copied to clipboard
val string: Output<String>? = null

A control parameter that is a string.

Link copied to clipboard
val stringList: Output<List<String>>? = null

A control parameter that is a list of strings.

Functions

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