public static interface CfnEntity.DataValueProperty
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.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())) .longValue(123) .mapValue(Map.of( "mapValueKey", 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())) .relationshipValue(relationshipValue) .stringValue("stringValue") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnEntity.DataValueProperty.Builder
A builder for
CfnEntity.DataValueProperty |
static class |
CfnEntity.DataValueProperty.Jsii$Proxy
An implementation for
CfnEntity.DataValueProperty |
Modifier and Type | Method and Description |
---|---|
static CfnEntity.DataValueProperty.Builder |
builder() |
default java.lang.Object |
getBooleanValue()
A boolean value.
|
default java.lang.Number |
getDoubleValue()
A double value.
|
default java.lang.String |
getExpression()
An expression that produces the value.
|
default java.lang.Number |
getIntegerValue()
An integer value.
|
default java.lang.Object |
getListValue()
A list of multiple values.
|
default java.lang.Number |
getLongValue()
A long value.
|
default java.lang.Object |
getMapValue()
An object that maps strings to multiple DataValue objects.
|
default java.lang.Object |
getRelationshipValue()
A value that relates a component to another component.
|
default java.lang.String |
getStringValue()
A string value.
|
default java.lang.Object getBooleanValue()
default java.lang.Number getDoubleValue()
default java.lang.String getExpression()
default java.lang.Number getIntegerValue()
default java.lang.Object getListValue()
default java.lang.Number getLongValue()
default java.lang.Object getMapValue()
default java.lang.Object getRelationshipValue()
default java.lang.String getStringValue()
static CfnEntity.DataValueProperty.Builder builder()