Interface CfnTopicRule.ITimestampProperty
Describes how to interpret an application-defined timestamp value from an MQTT message payload and the precision of that value.
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.AWS.IoT.dll
Syntax (csharp)
public interface ITimestampProperty
Syntax (vb)
Public Interface ITimestampProperty
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 timestampProperty = new TimestampProperty {
Value = "value",
// the properties below are optional
Unit = "unit"
};
Synopsis
Properties
Unit | The precision of the timestamp value that results from the expression described in |
Value | An expression that returns a long epoch time value. |
Properties
Unit
The precision of the timestamp value that results from the expression described in value
.
virtual string Unit { get; }
Property Value
System.String
Remarks
Value
An expression that returns a long epoch time value.
string Value { get; }
Property Value
System.String