interface NodeCountsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnSignalCatalogPropsMixin.NodeCountsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnSignalCatalogPropsMixin_NodeCountsProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnSignalCatalogPropsMixin.NodeCountsProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnSignalCatalogPropsMixin.NodeCountsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnSignalCatalogPropsMixin » 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 { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const nodeCountsProperty: iotfleetwise_mixins.CfnSignalCatalogPropsMixin.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