interface CfnDecoderManifestMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnDecoderManifestMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnDecoderManifestMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnDecoderManifestMixinProps |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnDecoderManifestMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnDecoderManifestMixinProps |
Properties for CfnDecoderManifestPropsMixin.
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 cfnDecoderManifestMixinProps: iotfleetwise_mixins.CfnDecoderManifestMixinProps = {
defaultForUnmappedSignals: 'defaultForUnmappedSignals',
description: 'description',
modelManifestArn: 'modelManifestArn',
name: 'name',
networkInterfaces: [{
canInterface: {
name: 'name',
protocolName: 'protocolName',
protocolVersion: 'protocolVersion',
},
interfaceId: 'interfaceId',
obdInterface: {
dtcRequestIntervalSeconds: 'dtcRequestIntervalSeconds',
hasTransmissionEcu: 'hasTransmissionEcu',
name: 'name',
obdStandard: 'obdStandard',
pidRequestIntervalSeconds: 'pidRequestIntervalSeconds',
requestMessageId: 'requestMessageId',
useExtendedIds: 'useExtendedIds',
},
type: 'type',
}],
signalDecoders: [{
canSignal: {
factor: 'factor',
isBigEndian: 'isBigEndian',
isSigned: 'isSigned',
length: 'length',
messageId: 'messageId',
name: 'name',
offset: 'offset',
signalValueType: 'signalValueType',
startBit: 'startBit',
},
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',
}],
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string | Use default decoders for all unmapped signals in the model. |
| description? | string | A brief description of the decoder manifest. |
| 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. |
| network | IResolvable | (IResolvable | Network)[] | A list of information about available network interfaces. |
| signal | IResolvable | (IResolvable | Signal)[] | A list of information about signal decoders. |
| status? | string | The state of the decoder manifest. |
| tags? | Cfn[] | Metadata that can be used to manage the decoder manifest. |
defaultForUnmappedSignals?
Type:
string
(optional)
Use default decoders for all unmapped signals in the model.
You don't need to provide any detailed decoding information.
description?
Type:
string
(optional)
A brief description of the decoder manifest.
modelManifestArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest.
name?
Type:
string
(optional)
The name of the decoder manifest.
networkInterfaces?
Type:
IResolvable | (IResolvable | Network)[]
(optional)
A list of information about available network interfaces.
signalDecoders?
Type:
IResolvable | (IResolvable | Signal)[]
(optional)
A list of information about signal decoders.
status?
Type:
string
(optional, default: "DRAFT")
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)
Metadata that can be used to manage the decoder manifest.

.NET
Go
Java
Python
TypeScript