interface CanNetworkInterfaceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnDecoderManifestPropsMixin.CanNetworkInterfaceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnDecoderManifestPropsMixin_CanNetworkInterfaceProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnDecoderManifestPropsMixin.CanNetworkInterfaceProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnDecoderManifestPropsMixin.CanNetworkInterfaceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnDecoderManifestPropsMixin » 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 { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const canNetworkInterfaceProperty: iotfleetwise_mixins.CfnDecoderManifestPropsMixin.CanNetworkInterfaceProperty = {
canInterface: {
name: 'name',
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
(optional)
Information about a network interface specified by the Controller Area Network (CAN) protocol.
interfaceId?
Type:
string
(optional)
The ID of the network interface.
type?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript