
com.pulumi.awsnative.securityhub.kotlin.inputs.SecurityControlParameterValueArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.securityhub.kotlin.inputs
import com.pulumi.awsnative.securityhub.inputs.SecurityControlParameterValueArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Double
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property boolean A control parameter that is a boolean.
* @property double A control parameter that is a double.
* @property enum A control parameter that is a enum.
* @property enumList A control parameter that is a list of enums.
* @property integer A control parameter that is a integer.
* @property integerList A control parameter that is a list of integers.
* @property string A control parameter that is a string.
* @property stringList A control parameter that is a list of strings.
*/
public data class SecurityControlParameterValueArgs(
public val boolean: Output? = null,
public val double: Output? = null,
public val `enum`: Output? = null,
public val enumList: Output>? = null,
public val integer: Output? = null,
public val integerList: Output>? = null,
public val string: Output? = null,
public val stringList: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.securityhub.inputs.SecurityControlParameterValueArgs =
com.pulumi.awsnative.securityhub.inputs.SecurityControlParameterValueArgs.builder()
.boolean_(boolean?.applyValue({ args0 -> args0 }))
.double_(double?.applyValue({ args0 -> args0 }))
.enum_(`enum`?.applyValue({ args0 -> args0 }))
.enumList(enumList?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.integer(integer?.applyValue({ args0 -> args0 }))
.integerList(integerList?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.string(string?.applyValue({ args0 -> args0 }))
.stringList(stringList?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [SecurityControlParameterValueArgs].
*/
@PulumiTagMarker
public class SecurityControlParameterValueArgsBuilder internal constructor() {
private var boolean: Output? = null
private var double: Output? = null
private var `enum`: Output? = null
private var enumList: Output>? = null
private var integer: Output? = null
private var integerList: Output>? = null
private var string: Output? = null
private var stringList: Output>? = null
/**
* @param value A control parameter that is a boolean.
*/
@JvmName("wmslrxaqrnrpmupa")
public suspend fun boolean(`value`: Output) {
this.boolean = value
}
/**
* @param value A control parameter that is a double.
*/
@JvmName("aexwqhiqqsuncmvh")
public suspend fun double(`value`: Output) {
this.double = value
}
/**
* @param value A control parameter that is a enum.
*/
@JvmName("ynokpwrlvsliitsq")
public suspend fun `enum`(`value`: Output) {
this.`enum` = value
}
/**
* @param value A control parameter that is a list of enums.
*/
@JvmName("jkihfbjckiiuamtu")
public suspend fun enumList(`value`: Output>) {
this.enumList = value
}
@JvmName("ilgrihfgfuabegia")
public suspend fun enumList(vararg values: Output) {
this.enumList = Output.all(values.asList())
}
/**
* @param values A control parameter that is a list of enums.
*/
@JvmName("myamynvllqmqdfhm")
public suspend fun enumList(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy