![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iotanalytics.kotlin.outputs.PipelineMath.kt Maven / Gradle / Ivy
@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),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy