interface SignalDecodersItemsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoTFleetWise.CfnDecoderManifest.SignalDecodersItemsProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnDecoderManifest_SignalDecodersItemsProperty | 
|  Java | software.amazon.awscdk.services.iotfleetwise.CfnDecoderManifest.SignalDecodersItemsProperty | 
|  Python | aws_cdk.aws_iotfleetwise.CfnDecoderManifest.SignalDecodersItemsProperty | 
|  TypeScript | aws-cdk-lib»aws_iotfleetwise»CfnDecoderManifest»SignalDecodersItemsProperty | 
Information about a signal decoder.
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 signalDecodersItemsProperty: iotfleetwise.CfnDecoderManifest.SignalDecodersItemsProperty = {
  fullyQualifiedName: 'fullyQualifiedName',
  interfaceId: 'interfaceId',
  type: 'type',
  // the properties below are optional
  canSignal: {
    factor: 'factor',
    isBigEndian: 'isBigEndian',
    isSigned: 'isSigned',
    length: 'length',
    messageId: 'messageId',
    offset: 'offset',
    startBit: 'startBit',
    // the properties below are optional
    name: 'name',
    signalValueType: 'signalValueType',
  },
  obdSignal: {
    byteLength: 'byteLength',
    offset: 'offset',
    pid: 'pid',
    pidResponseLength: 'pidResponseLength',
    scaling: 'scaling',
    serviceMode: 'serviceMode',
    startByte: 'startByte',
    // the properties below are optional
    bitMaskLength: 'bitMaskLength',
    bitRightShift: 'bitRightShift',
    isSigned: 'isSigned',
    signalValueType: 'signalValueType',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| fully | string | |
| interface | string | |
| type | string | |
| can | IResolvable | Can | |
| obd | IResolvable | Obd | 
fullyQualifiedName
Type:
string
interfaceId
Type:
string
type
Type:
string
canSignal?
Type:
IResolvable | Can
(optional)
obdSignal?
Type:
IResolvable | Obd
(optional)
