Interface CfnEntity.IPropertyProperty
An object that sets information about a property.
Namespace: Amazon.CDK.AWS.IoTTwinMaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IPropertyProperty
Syntax (vb)
Public Interface IPropertyProperty
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 definition;
var relationshipValue;
var propertyProperty = new PropertyProperty {
Definition = definition,
Value = 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
Definition | An object that specifies information about a property. |
Value | An object that contains information about a value for a time series property. |
Properties
Definition
An object that specifies information about a property.
virtual object Definition { get; }
Property Value
System.
Remarks
Value
An object that contains information about a value for a time series property.
virtual object Value { get; }
Property Value
System.