interface CanSignalDecoderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnDecoderManifestPropsMixin.CanSignalDecoderProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnDecoderManifestPropsMixin_CanSignalDecoderProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnDecoderManifestPropsMixin.CanSignalDecoderProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnDecoderManifestPropsMixin.CanSignalDecoderProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnDecoderManifestPropsMixin » CanSignalDecoderProperty |
Information about signal decoder using the Controller Area Network (CAN) protocol.
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 canSignalDecoderProperty: iotfleetwise_mixins.CfnDecoderManifestPropsMixin.CanSignalDecoderProperty = {
canSignal: {
factor: 'factor',
isBigEndian: 'isBigEndian',
isSigned: 'isSigned',
length: 'length',
messageId: 'messageId',
name: 'name',
offset: 'offset',
signalValueType: 'signalValueType',
startBit: 'startBit',
},
fullyQualifiedName: 'fullyQualifiedName',
interfaceId: 'interfaceId',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| can | IResolvable | Can | Information about a single controller area network (CAN) signal and the messages it receives and transmits. |
| fully | string | The fully qualified name of a signal decoder as defined in a vehicle model. |
| interface | string | The ID of a network interface that specifies what network protocol a vehicle follows. |
| type? | string | The network protocol for the vehicle. |
canSignal?
Type:
IResolvable | Can
(optional)
Information about a single controller area network (CAN) signal and the messages it receives and transmits.
fullyQualifiedName?
Type:
string
(optional)
The fully qualified name of a signal decoder as defined in a vehicle model.
interfaceId?
Type:
string
(optional)
The ID of a network interface that specifies what network protocol a vehicle follows.
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