
com.pulumi.awsnative.customerprofiles.kotlin.outputs.CalculatedAttributeDefinitionThreshold.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.customerprofiles.kotlin.outputs
import com.pulumi.awsnative.customerprofiles.kotlin.enums.CalculatedAttributeDefinitionThresholdOperator
import kotlin.String
import kotlin.Suppress
/**
* The threshold for the calculated attribute.
* @property operator The operator of the threshold.
* @property value The value of the threshold.
*/
public data class CalculatedAttributeDefinitionThreshold(
public val `operator`: CalculatedAttributeDefinitionThresholdOperator,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.customerprofiles.outputs.CalculatedAttributeDefinitionThreshold): CalculatedAttributeDefinitionThreshold = CalculatedAttributeDefinitionThreshold(
`operator` = javaType.`operator`().let({ args0 ->
com.pulumi.awsnative.customerprofiles.kotlin.enums.CalculatedAttributeDefinitionThresholdOperator.Companion.toKotlin(args0)
}),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy