DetectorModelAssetPropertyValueArgs

data class DetectorModelAssetPropertyValueArgs(val quality: Output<String>? = null, val timestamp: Output<DetectorModelAssetPropertyTimestampArgs>? = null, val value: Output<DetectorModelAssetPropertyVariantArgs>) : ConvertibleToJava<DetectorModelAssetPropertyValueArgs>

A structure that contains value information. For more information, see AssetPropertyValue in the API Reference. You must use expressions for all parameters in `AssetPropertyValue`. The expressions accept literals, operators, functions, references, and substitution templates. Examples

  • For literal values, the expressions must contain single quotes. For example, the value for the `quality` parameter can be `'GOOD'`.

  • For references, you must specify either variables or input values. For example, the value for the `quality` parameter can be `$input.TemperatureInput.sensorData.quality`. For more information, see Expressions in the Developer Guide.

Constructors

Link copied to clipboard
constructor(quality: Output<String>? = null, timestamp: Output<DetectorModelAssetPropertyTimestampArgs>? = null, value: Output<DetectorModelAssetPropertyVariantArgs>)

Properties

Link copied to clipboard
val quality: Output<String>? = null

The quality of the asset property value. The value must be `'GOOD'`, `'BAD'`, or `'UNCERTAIN'`.

Link copied to clipboard

The timestamp associated with the asset property value. The default is the current event time.

Link copied to clipboard

The value to send to an asset property.

Functions

Link copied to clipboard
open override fun toJava(): DetectorModelAssetPropertyValueArgs