Interface CfnTopicRulePropsMixin.AssetPropertyValueProperty

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

@Stability(Stable) public static interface CfnTopicRulePropsMixin.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.cfnpropertymixins.services.iot.*;
 AssetPropertyValueProperty assetPropertyValueProperty = AssetPropertyValueProperty.builder()
         .quality("quality")
         .timestamp(AssetPropertyTimestampProperty.builder()
                 .offsetInNanos("offsetInNanos")
                 .timeInSeconds("timeInSeconds")
                 .build())
         .value(AssetPropertyVariantProperty.builder()
                 .booleanValue("booleanValue")
                 .doubleValue("doubleValue")
                 .integerValue("integerValue")
                 .stringValue("stringValue")
                 .build())
         .build();
 

See Also: