@Stability(value=Stable)
public static interface CfnEntity.DataValueProperty
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 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 Object |
getBooleanValue()
A boolean value.
|
default Number |
getDoubleValue()
A double value.
|
default String |
getExpression()
An expression that produces the value.
|
default Number |
getIntegerValue()
An integer value.
|
default Object |
getListValue()
A list of multiple values.
|
default Number |
getLongValue()
A long value.
|
default Object |
getMapValue()
An object that maps strings to multiple DataValue objects.
|
default Object |
getRelationshipValue()
A value that relates a component to another component.
|
default String |
getStringValue()
A string value.
|
@Stability(value=Stable) @Nullable default Object getBooleanValue()
@Stability(value=Stable) @Nullable default Number getDoubleValue()
@Stability(value=Stable) @Nullable default String getExpression()
@Stability(value=Stable) @Nullable default Number getIntegerValue()
@Stability(value=Stable) @Nullable default Object getListValue()
@Stability(value=Stable) @Nullable default Number getLongValue()
@Stability(value=Stable) @Nullable default Object getMapValue()
@Stability(value=Stable) @Nullable default Object getRelationshipValue()
@Stability(value=Stable) @Nullable default String getStringValue()
@Stability(value=Stable) static CfnEntity.DataValueProperty.Builder builder()
Copyright © 2022. All rights reserved.