com.pulumi.awsnative.ses.kotlin.outputs.MailManagerRuleSetRuleNumberExpression.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ses.kotlin.outputs
import com.pulumi.awsnative.ses.kotlin.enums.MailManagerRuleSetRuleNumberOperator
import kotlin.Double
import kotlin.Suppress
/**
*
* @property evaluate
* @property operator
* @property value
*/
public data class MailManagerRuleSetRuleNumberExpression(
public val evaluate: MailManagerRuleSetRuleNumberToEvaluateProperties,
public val `operator`: MailManagerRuleSetRuleNumberOperator,
public val `value`: Double,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ses.outputs.MailManagerRuleSetRuleNumberExpression): MailManagerRuleSetRuleNumberExpression = MailManagerRuleSetRuleNumberExpression(
evaluate = javaType.evaluate().let({ args0 ->
com.pulumi.awsnative.ses.kotlin.outputs.MailManagerRuleSetRuleNumberToEvaluateProperties.Companion.toKotlin(args0)
}),
`operator` = javaType.`operator`().let({ args0 ->
com.pulumi.awsnative.ses.kotlin.enums.MailManagerRuleSetRuleNumberOperator.Companion.toKotlin(args0)
}),
`value` = javaType.`value`(),
)
}
}