Interface CfnTopicRule.AssetPropertyVariantProperty

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

@Stability(Stable) public static interface CfnTopicRule.AssetPropertyVariantProperty extends software.amazon.jsii.JsiiSerializable
Contains an asset property value (of a single type).

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.*;
 AssetPropertyVariantProperty assetPropertyVariantProperty = AssetPropertyVariantProperty.builder()
         .booleanValue("booleanValue")
         .doubleValue("doubleValue")
         .integerValue("integerValue")
         .stringValue("stringValue")
         .build();
 

See Also: