Class CfnSignalCatalog.NodeProperty
A general abstraction of a signal.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.AWS.IoTFleetWise.dll
Syntax (csharp)
public class NodeProperty : Object, CfnSignalCatalog.INodeProperty
Syntax (vb)
Public Class NodeProperty
Inherits Object
Implements CfnSignalCatalog.INodeProperty
Remarks
A node can be specified as an actuator, attribute, branch, or sensor.
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.IoTFleetWise;
var nodeProperty = new NodeProperty {
Actuator = new ActuatorProperty {
DataType = "dataType",
FullyQualifiedName = "fullyQualifiedName",
// the properties below are optional
AllowedValues = new [] { "allowedValues" },
AssignedValue = "assignedValue",
Description = "description",
Max = 123,
Min = 123,
Unit = "unit"
},
Attribute = new AttributeProperty {
DataType = "dataType",
FullyQualifiedName = "fullyQualifiedName",
// the properties below are optional
AllowedValues = new [] { "allowedValues" },
AssignedValue = "assignedValue",
DefaultValue = "defaultValue",
Description = "description",
Max = 123,
Min = 123,
Unit = "unit"
},
Branch = new BranchProperty {
FullyQualifiedName = "fullyQualifiedName",
// the properties below are optional
Description = "description"
},
Sensor = new SensorProperty {
DataType = "dataType",
FullyQualifiedName = "fullyQualifiedName",
// the properties below are optional
AllowedValues = new [] { "allowedValues" },
Description = "description",
Max = 123,
Min = 123,
Unit = "unit"
}
};
Synopsis
Constructors
NodeProperty() |
Properties
Actuator | (Optional) Information about a node specified as an actuator. |
Attribute | (Optional) Information about a node specified as an attribute. |
Branch | (Optional) Information about a node specified as a branch. |
Sensor | (Optional) An input component that reports the environmental condition of a vehicle. |
Constructors
NodeProperty()
public NodeProperty()
Properties
Actuator
(Optional) Information about a node specified as an actuator.
public object Actuator { get; set; }
Property Value
System.Object
Remarks
An actuator is a digital representation of a vehicle device.
Attribute
(Optional) Information about a node specified as an attribute.
public object Attribute { get; set; }
Property Value
System.Object
Remarks
An attribute represents static information about a vehicle.
Branch
(Optional) Information about a node specified as a branch.
public object Branch { get; set; }
Property Value
System.Object
Remarks
A group of signals that are defined in a hierarchical structure.
Sensor
(Optional) An input component that reports the environmental condition of a vehicle.
public object Sensor { get; set; }
Property Value
System.Object
Remarks
You can collect data about fluid levels, temperatures, vibrations, or battery voltage from sensors.