Interface CfnComponentType.DataValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnComponentType.DataValueProperty.Jsii$Proxy
- Enclosing class:
CfnComponentType
@Stability(Stable)
public static interface CfnComponentType.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnComponentType.DataValuePropertystatic final classAn implementation forCfnComponentType.DataValueProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA boolean value.default NumberA double value.default StringAn expression that produces the value.default NumberAn integer value.default ObjectA list of multiple values.default NumberA long value.default ObjectAn object that maps strings to multipleDataValueobjects.default ObjectA value that relates a component to another component.default StringA string value.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBooleanValue
A boolean value.- See Also:
-
getDoubleValue
A double value.- See Also:
-
getExpression
An expression that produces the value.- See Also:
-
getIntegerValue
An integer value.- See Also:
-
getListValue
A list of multiple values.- See Also:
-
getLongValue
A long value.- See Also:
-
getMapValue
An object that maps strings to multipleDataValueobjects.- See Also:
-
getRelationshipValue
A value that relates a component to another component.- See Also:
-
getStringValue
A string value.- See Also:
-
builder
-