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

io.burkard.cdk.services.iotanalytics.cfnPipeline.MathProperty.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.iotanalytics.cfnPipeline

@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object MathProperty {

  def apply(
    name: String,
    attribute: String,
    math: String,
    next: Option[String] = None
  ): software.amazon.awscdk.services.iotanalytics.CfnPipeline.MathProperty =
    (new software.amazon.awscdk.services.iotanalytics.CfnPipeline.MathProperty.Builder)
      .name(name)
      .attribute(attribute)
      .math(math)
      .next(next.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy