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

io.burkard.cdk.services.iotevents.cfnAlarmModel.IotSiteWiseProperty.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 IotSiteWiseProperty {

  def apply(
    propertyAlias: Option[String] = None,
    entryId: Option[String] = None,
    assetId: Option[String] = None,
    propertyId: Option[String] = None,
    propertyValue: Option[software.amazon.awscdk.services.iotevents.CfnAlarmModel.AssetPropertyValueProperty] = None
  ): software.amazon.awscdk.services.iotevents.CfnAlarmModel.IotSiteWiseProperty =
    (new software.amazon.awscdk.services.iotevents.CfnAlarmModel.IotSiteWiseProperty.Builder)
      .propertyAlias(propertyAlias.orNull)
      .entryId(entryId.orNull)
      .assetId(assetId.orNull)
      .propertyId(propertyId.orNull)
      .propertyValue(propertyValue.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy