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

io.burkard.cdk.services.iotevents.cfnAlarmModel.SimpleRuleProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.iotevents.cfnAlarmModel

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

  def apply(
    threshold: String,
    inputProperty: String,
    comparisonOperator: String
  ): software.amazon.awscdk.services.iotevents.CfnAlarmModel.SimpleRuleProperty =
    (new software.amazon.awscdk.services.iotevents.CfnAlarmModel.SimpleRuleProperty.Builder)
      .threshold(threshold)
      .inputProperty(inputProperty)
      .comparisonOperator(comparisonOperator)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy