@Stability(value=Stable)
public static interface CfnEntity.PropertyProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEntity.PropertyProperty.Builder
A builder for
CfnEntity.PropertyProperty |
static class |
CfnEntity.PropertyProperty.Jsii$Proxy
An implementation for
CfnEntity.PropertyProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEntity.PropertyProperty.Builder |
builder() |
default Object |
getDefinition()
An object that specifies information about a property.
|
default Object |
getValue()
An object that contains information about a value for a time series property.
|
@Stability(value=Stable) @Nullable default Object getDefinition()
@Stability(value=Stable) @Nullable default Object getValue()
@Stability(value=Stable) static CfnEntity.PropertyProperty.Builder builder()
CfnEntity.PropertyProperty.Builder of CfnEntity.PropertyPropertyCopyright © 2022. All rights reserved.