interface ObdSignalDecoderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnDecoderManifestPropsMixin.ObdSignalDecoderProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnDecoderManifestPropsMixin_ObdSignalDecoderProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnDecoderManifestPropsMixin.ObdSignalDecoderProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnDecoderManifestPropsMixin.ObdSignalDecoderProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnDecoderManifestPropsMixin » ObdSignalDecoderProperty |
A list of information about signal decoders.
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 obdSignalDecoderProperty: iotfleetwise_mixins.CfnDecoderManifestPropsMixin.ObdSignalDecoderProperty = {
fullyQualifiedName: 'fullyQualifiedName',
interfaceId: 'interfaceId',
obdSignal: {
bitMaskLength: 'bitMaskLength',
bitRightShift: 'bitRightShift',
byteLength: 'byteLength',
isSigned: 'isSigned',
offset: 'offset',
pid: 'pid',
pidResponseLength: 'pidResponseLength',
scaling: 'scaling',
serviceMode: 'serviceMode',
signalValueType: 'signalValueType',
startByte: 'startByte',
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| obd | IResolvable | Obd | Information about signal messages using the on-board diagnostics (OBD) II protocol in a vehicle. |
| type? | string | The network protocol for the vehicle. |
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.
obdSignal?
Type:
IResolvable | Obd
(optional)
Information about signal messages using the on-board diagnostics (OBD) II protocol in a vehicle.
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