Interface CfnEntity.PropertyProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnEntity.PropertyProperty.Jsii$Proxy
- Enclosing class:
 CfnEntity
@Stability(Stable)
public static interface CfnEntity.PropertyProperty
extends software.amazon.jsii.JsiiSerializable
An object that sets information about 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 definition;
 Object relationshipValue;
 PropertyProperty propertyProperty = PropertyProperty.builder()
         .definition(definition)
         .value(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())
         .build();
 
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEntity.PropertyPropertystatic final classAn implementation forCfnEntity.PropertyProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getDefinition
An object that specifies information about a property.- See Also:
 
 - 
getValue
An object that contains information about a value for a time series property.Returns union: either
IResolvableorCfnEntity.DataValueProperty- See Also:
 
 - 
builder
- Returns:
 - a 
CfnEntity.PropertyProperty.BuilderofCfnEntity.PropertyProperty 
 
 -