Interface CfnSignalCatalog.NodeCountsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSignalCatalog.NodeCountsProperty.Jsii$Proxy
- Enclosing class:
- CfnSignalCatalog
@Stability(Stable)
public static interface CfnSignalCatalog.NodeCountsProperty
extends software.amazon.jsii.JsiiSerializable
Information about the number of nodes and node types in a vehicle network.
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.iotfleetwise.*;
NodeCountsProperty nodeCountsProperty = NodeCountsProperty.builder()
.totalActuators(123)
.totalAttributes(123)
.totalBranches(123)
.totalNodes(123)
.totalSensors(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSignalCatalog.NodeCountsPropertystatic final classAn implementation forCfnSignalCatalog.NodeCountsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Number(Optional) The total number of nodes in a vehicle network that represent actuators.default Number(Optional) The total number of nodes in a vehicle network that represent attributes.default Number(Optional) The total number of nodes in a vehicle network that represent branches.default Number(Optional) The total number of nodes in a vehicle network.default Number(Optional) The total number of nodes in a vehicle network that represent sensors.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTotalActuators
(Optional) The total number of nodes in a vehicle network that represent actuators. -
getTotalAttributes
(Optional) The total number of nodes in a vehicle network that represent attributes. -
getTotalBranches
(Optional) The total number of nodes in a vehicle network that represent branches. -
getTotalNodes
(Optional) The total number of nodes in a vehicle network. -
getTotalSensors
(Optional) The total number of nodes in a vehicle network that represent sensors. -
builder
-