interface CanNetworkInterfaceProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoTFleetWise.CfnDecoderManifest.CanNetworkInterfaceProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnDecoderManifest_CanNetworkInterfaceProperty | 
|  Java | software.amazon.awscdk.services.iotfleetwise.CfnDecoderManifest.CanNetworkInterfaceProperty | 
|  Python | aws_cdk.aws_iotfleetwise.CfnDecoderManifest.CanNetworkInterfaceProperty | 
|  TypeScript | aws-cdk-lib»aws_iotfleetwise»CfnDecoderManifest»CanNetworkInterfaceProperty | 
Represents a node and its specifications in an in-vehicle communication network.
All signal decoders must be associated with a network node.
To return this information about all the network interfaces specified in a decoder manifest, use the ListDecoderManifestNetworkInterfaces in the AWS IoT FleetWise API Reference .
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 canNetworkInterfaceProperty: iotfleetwise.CfnDecoderManifest.CanNetworkInterfaceProperty = {
  canInterface: {
    name: 'name',
    // the properties below are optional
    protocolName: 'protocolName',
    protocolVersion: 'protocolVersion',
  },
  interfaceId: 'interfaceId',
  type: 'type',
};
Properties
| Name | Type | Description | 
|---|---|---|
| can | IResolvable | Can | Information about a network interface specified by the Controller Area Network (CAN) protocol. | 
| interface | string | The ID of the network interface. | 
| type | string | The network protocol for the vehicle. | 
canInterface
Type:
IResolvable | Can
Information about a network interface specified by the Controller Area Network (CAN) protocol.
interfaceId
Type:
string
The ID of the network interface.
type
Type:
string
The network protocol for the vehicle.
For example, CAN_SIGNAL specifies a protocol that defines how data is communicated between electronic control units (ECUs). OBD_SIGNAL specifies a protocol that defines how self-diagnostic data is communicated between ECUs.
