com.pulumi.awsnative.iotanalytics.kotlin.outputs.PipelineMath.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.iotanalytics.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property attribute The name of the attribute that contains the result of the math operation.
* @property math An expression that uses one or more existing attributes and must return an integer value.
* @property name The name of the 'math' activity.
* @property next The next activity in the pipeline.
*/
public data class PipelineMath(
public val attribute: String,
public val math: String,
public val name: String,
public val next: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.iotanalytics.outputs.PipelineMath): PipelineMath = PipelineMath(
attribute = javaType.attribute(),
math = javaType.math(),
name = javaType.name(),
next = javaType.next().map({ args0 -> args0 }).orElse(null),
)
}
}