Interface CfnTopicRule.TimestampProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTopicRule.TimestampProperty.Jsii$Proxy
Enclosing class:
CfnTopicRule

@Stability(Stable) public static interface CfnTopicRule.TimestampProperty extends software.amazon.jsii.JsiiSerializable
Describes how to interpret an application-defined timestamp value from an MQTT message payload and the precision of that value.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iot.*;
 TimestampProperty timestampProperty = TimestampProperty.builder()
         .value("value")
         // the properties below are optional
         .unit("unit")
         .build();
 

See Also: