Interface CfnTopicRule.AssetPropertyValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopicRule.AssetPropertyValueProperty.Jsii$Proxy
- Enclosing class:
CfnTopicRule
@Stability(Stable)
public static interface CfnTopicRule.AssetPropertyValueProperty
extends software.amazon.jsii.JsiiSerializable
An asset property value entry containing the following information.
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.*;
AssetPropertyValueProperty assetPropertyValueProperty = AssetPropertyValueProperty.builder()
.timestamp(AssetPropertyTimestampProperty.builder()
.timeInSeconds("timeInSeconds")
// the properties below are optional
.offsetInNanos("offsetInNanos")
.build())
.value(AssetPropertyVariantProperty.builder()
.booleanValue("booleanValue")
.doubleValue("doubleValue")
.integerValue("integerValue")
.stringValue("stringValue")
.build())
// the properties below are optional
.quality("quality")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopicRule.AssetPropertyValuePropertystatic final classAn implementation forCfnTopicRule.AssetPropertyValueProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTimestamp
The asset property value timestamp.Returns union: either
IResolvableorCfnTopicRule.AssetPropertyTimestampProperty- See Also:
-
getValue
The value of the asset property.Returns union: either
IResolvableorCfnTopicRule.AssetPropertyVariantProperty- See Also:
-
getQuality
Optional.A string that describes the quality of the value. Accepts substitution templates. Must be
GOOD,BAD, orUNCERTAIN.- See Also:
-
builder
-