Interface CfnTopicRule.IAssetPropertyValueProperty
An asset property value entry containing the following information.
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAssetPropertyValueProperty
Syntax (vb)
Public Interface IAssetPropertyValueProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoT;
var assetPropertyValueProperty = new AssetPropertyValueProperty {
Timestamp = new AssetPropertyTimestampProperty {
TimeInSeconds = "timeInSeconds",
// the properties below are optional
OffsetInNanos = "offsetInNanos"
},
Value = new AssetPropertyVariantProperty {
BooleanValue = "booleanValue",
DoubleValue = "doubleValue",
IntegerValue = "integerValue",
StringValue = "stringValue"
},
// the properties below are optional
Quality = "quality"
};
Synopsis
Properties
Quality | Optional. |
Timestamp | The asset property value timestamp. |
Value | The value of the asset property. |
Properties
Quality
Optional.
virtual string Quality { get; }
Property Value
System.
Remarks
A string that describes the quality of the value. Accepts substitution templates. Must be GOOD
, BAD
, or UNCERTAIN
.
Timestamp
The asset property value timestamp.
object Timestamp { get; }
Property Value
System.
Remarks
Value
The value of the asset property.
object Value { get; }
Property Value
System.