aws-cdk-lib.aws_iotfleetwise.CfnDecoderManifestProps

interface CfnDecoderManifestProps

LanguageType name
.NETAmazon.CDK.AWS.IoTFleetWise.CfnDecoderManifestProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnDecoderManifestProps
Javasoftware.amazon.awscdk.services.iotfleetwise.CfnDecoderManifestProps
Pythonaws_cdk.aws_iotfleetwise.CfnDecoderManifestProps
TypeScript aws-cdk-lib » 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 { aws_iotfleetwise as iotfleetwise } from 'aws-cdk-lib';
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

NameTypeDescription
modelManifestArnstringThe Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest.
namestringThe name of the decoder manifest.
description?string(Optional) A brief description of the decoder manifest.
networkInterfaces?IResolvable | IResolvable | NetworkInterfacesItemsProperty[](Optional) A list of information about available network interfaces.
signalDecoders?IResolvable | IResolvable | SignalDecodersItemsProperty[](Optional) A list of information about signal decoders.
status?string(Optional) The state of the decoder manifest.
tags?CfnTag[](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 | NetworkInterfacesItemsProperty[] (optional)

(Optional) A list of information about available network interfaces.


signalDecoders?

Type: IResolvable | IResolvable | SignalDecodersItemsProperty[] (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: CfnTag[] (optional)

(Optional) Metadata that can be used to manage the decoder manifest.