Interface CfnComponentType.IDataValueProperty
An object that specifies a value for a property.
Namespace: Amazon.CDK.AWS.IoTTwinMaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnComponentType.IDataValueProperty
Syntax (vb)
Public Interface CfnComponentType.IDataValueProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTTwinMaker;
DataValueProperty dataValueProperty_;
var relationshipValue;
var dataValueProperty = new DataValueProperty {
BooleanValue = false,
DoubleValue = 123,
Expression = "expression",
IntegerValue = 123,
ListValue = new [] { dataValueProperty_ },
LongValue = 123,
MapValue = new Dictionary<string, object> {
{ "mapValueKey", dataValueProperty_ }
},
RelationshipValue = relationshipValue,
StringValue = "stringValue"
};
Synopsis
Properties
| BooleanValue | A boolean value. |
| DoubleValue | A double value. |
| Expression | An expression that produces the value. |
| IntegerValue | An integer value. |
| ListValue | A list of multiple values. |
| LongValue | A long value. |
| MapValue | An object that maps strings to multiple |
| RelationshipValue | A value that relates a component to another component. |
| StringValue | A string value. |
Properties
BooleanValue
A boolean value.
object? BooleanValue { get; }
Property Value
Remarks
DoubleValue
A double value.
double? DoubleValue { get; }
Property Value
Remarks
Expression
An expression that produces the value.
string? Expression { get; }
Property Value
Remarks
IntegerValue
An integer value.
double? IntegerValue { get; }
Property Value
Remarks
ListValue
A list of multiple values.
object? ListValue { get; }
Property Value
Remarks
LongValue
A long value.
double? LongValue { get; }
Property Value
Remarks
MapValue
An object that maps strings to multiple DataValue objects.
object? MapValue { get; }
Property Value
Remarks
Type union: either IResolvable or Dictionary<string, either IResolvable or CfnComponentType.IDataValueProperty>
RelationshipValue
A value that relates a component to another component.
object? RelationshipValue { get; }
Property Value
Remarks
StringValue
A string value.
string? StringValue { get; }