All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.ses.kotlin.outputs.MailManagerRuleSetRuleNumberExpression.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@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`(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy