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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopicRule.TimestampProperty
static final class
An implementation forCfnTopicRule.TimestampProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getValue
An expression that returns a long epoch time value.- See Also:
-
getUnit
The precision of the timestamp value that results from the expression described invalue
.- See Also:
-
builder
-