interface NodeCountsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnSignalCatalog.NodeCountsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnSignalCatalog_NodeCountsProperty |
Java | software.amazon.awscdk.services.iotfleetwise.CfnSignalCatalog.NodeCountsProperty |
Python | aws_cdk.aws_iotfleetwise.CfnSignalCatalog.NodeCountsProperty |
TypeScript | aws-cdk-lib » aws_iotfleetwise » CfnSignalCatalog » NodeCountsProperty |
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 { aws_iotfleetwise as iotfleetwise } from 'aws-cdk-lib';
const nodeCountsProperty: iotfleetwise.CfnSignalCatalog.NodeCountsProperty = {
totalActuators: 123,
totalAttributes: 123,
totalBranches: 123,
totalNodes: 123,
totalSensors: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| total | number | The total number of nodes in a vehicle network that represent actuators. |
| total | number | The total number of nodes in a vehicle network that represent attributes. |
| total | number | The total number of nodes in a vehicle network that represent branches. |
| total | number | The total number of nodes in a vehicle network. |
| total | number | The total number of nodes in a vehicle network that represent sensors. |
totalActuators?
Type:
number
(optional)
The total number of nodes in a vehicle network that represent actuators.
totalAttributes?
Type:
number
(optional)
The total number of nodes in a vehicle network that represent attributes.
totalBranches?
Type:
number
(optional)
The total number of nodes in a vehicle network that represent branches.
totalNodes?
Type:
number
(optional)
The total number of nodes in a vehicle network.
totalSensors?
Type:
number
(optional)
The total number of nodes in a vehicle network that represent sensors.

.NET
Go
Java
Python
TypeScript