
com.pulumi.awsnative.securityhub.kotlin.outputs.SecurityControlParameterValue.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.securityhub.kotlin.outputs
import kotlin.Boolean
import kotlin.Double
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @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 SecurityControlParameterValue(
public val boolean: Boolean? = null,
public val double: Double? = null,
public val `enum`: String? = null,
public val enumList: List? = null,
public val integer: Int? = null,
public val integerList: List? = null,
public val string: String? = null,
public val stringList: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.securityhub.outputs.SecurityControlParameterValue): SecurityControlParameterValue = SecurityControlParameterValue(
boolean = javaType.boolean_().map({ args0 -> args0 }).orElse(null),
double = javaType.double_().map({ args0 -> args0 }).orElse(null),
`enum` = javaType.enum_().map({ args0 -> args0 }).orElse(null),
enumList = javaType.enumList().map({ args0 -> args0 }),
integer = javaType.integer().map({ args0 -> args0 }).orElse(null),
integerList = javaType.integerList().map({ args0 -> args0 }),
string = javaType.string().map({ args0 -> args0 }).orElse(null),
stringList = javaType.stringList().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy