interface CfnDecoderManifestProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoTFleetWise.CfnDecoderManifestProps | 
|  Java | software.amazon.awscdk.services.iotfleetwise.CfnDecoderManifestProps | 
|  Python | aws_cdk.aws_iotfleetwise.CfnDecoderManifestProps | 
|  TypeScript | @aws-cdk/aws-iotfleetwise»CfnDecoderManifestProps | 
Properties for defining a CfnDecoderManifest.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotfleetwise from '@aws-cdk/aws-iotfleetwise';
const cfnDecoderManifestProps: iotfleetwise.CfnDecoderManifestProps = {
  modelManifestArn: 'modelManifestArn',
  name: 'name',
  // the properties below are optional
  description: 'description',
  networkInterfaces: [{
    interfaceId: 'interfaceId',
    type: 'type',
    // the properties below are optional
    canInterface: {
      name: 'name',
      // the properties below are optional
      protocolName: 'protocolName',
      protocolVersion: 'protocolVersion',
    },
    obdInterface: {
      name: 'name',
      requestMessageId: 'requestMessageId',
      // the properties below are optional
      dtcRequestIntervalSeconds: 'dtcRequestIntervalSeconds',
      hasTransmissionEcu: 'hasTransmissionEcu',
      obdStandard: 'obdStandard',
      pidRequestIntervalSeconds: 'pidRequestIntervalSeconds',
      useExtendedIds: 'useExtendedIds',
    },
  }],
  signalDecoders: [{
    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',
    },
    obdSignal: {
      byteLength: 'byteLength',
      offset: 'offset',
      pid: 'pid',
      pidResponseLength: 'pidResponseLength',
      scaling: 'scaling',
      serviceMode: 'serviceMode',
      startByte: 'startByte',
      // the properties below are optional
      bitMaskLength: 'bitMaskLength',
      bitRightShift: 'bitRightShift',
    },
  }],
  status: 'status',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| model | string | The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest. | 
| name | string | The name of the decoder manifest. | 
| description? | string | (Optional) A brief description of the decoder manifest. | 
| network | IResolvable | IResolvable | Network[] | (Optional) A list of information about available network interfaces. | 
| signal | IResolvable | IResolvable | Signal[] | (Optional) A list of information about signal decoders. | 
| status? | string | (Optional) The state of the decoder manifest. | 
| tags? | Cfn[] | (Optional) Metadata that can be used to manage the decoder manifest. | 
modelManifestArn
Type:
string
The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest.
name
Type:
string
The name of the decoder manifest.
description?
Type:
string
(optional)
(Optional) A brief description of the decoder manifest.
networkInterfaces?
Type:
IResolvable | IResolvable | Network[]
(optional)
(Optional) A list of information about available network interfaces.
signalDecoders?
Type:
IResolvable | IResolvable | Signal[]
(optional)
(Optional) A list of information about signal decoders.
status?
Type:
string
(optional)
(Optional) The state of the decoder manifest.
If the status is ACTIVE , the decoder manifest can't be edited. If the status is marked DRAFT , you can edit the decoder manifest.
tags?
Type:
Cfn[]
(optional)
(Optional) Metadata that can be used to manage the decoder manifest.
