Interface CfnEntity.DataValueProperty

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

@Stability(Stable) public static interface CfnEntity.DataValueProperty extends software.amazon.jsii.JsiiSerializable
An object that specifies a value for a property.

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.iottwinmaker.*;
 DataValueProperty dataValueProperty_;
 Object relationshipValue;
 DataValueProperty dataValueProperty = DataValueProperty.builder()
         .booleanValue(false)
         .doubleValue(123)
         .expression("expression")
         .integerValue(123)
         .listValue(List.of(dataValueProperty_))
         .longValue(123)
         .mapValue(Map.of(
                 "mapValueKey", dataValueProperty_))
         .relationshipValue(relationshipValue)
         .stringValue("stringValue")
         .build();
 

See Also: