create_decoder_manifest
(**kwargs)¶Creates the decoder manifest associated with a model manifest. To create a decoder manifest, the following must be true:
See also: AWS API Documentation
Request Syntax
response = client.create_decoder_manifest(
name='string',
description='string',
modelManifestArn='string',
signalDecoders=[
{
'fullyQualifiedName': 'string',
'type': 'CAN_SIGNAL'|'OBD_SIGNAL',
'interfaceId': 'string',
'canSignal': {
'messageId': 123,
'isBigEndian': True|False,
'isSigned': True|False,
'startBit': 123,
'offset': 123.0,
'factor': 123.0,
'length': 123,
'name': 'string'
},
'obdSignal': {
'pidResponseLength': 123,
'serviceMode': 123,
'pid': 123,
'scaling': 123.0,
'offset': 123.0,
'startByte': 123,
'byteLength': 123,
'bitRightShift': 123,
'bitMaskLength': 123
}
},
],
networkInterfaces=[
{
'interfaceId': 'string',
'type': 'CAN_INTERFACE'|'OBD_INTERFACE',
'canInterface': {
'name': 'string',
'protocolName': 'string',
'protocolVersion': 'string'
},
'obdInterface': {
'name': 'string',
'requestMessageId': 123,
'obdStandard': 'string',
'pidRequestIntervalSeconds': 123,
'dtcRequestIntervalSeconds': 123,
'useExtendedIds': True|False,
'hasTransmissionEcu': True|False
}
},
],
tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
[REQUIRED]
The unique name of the decoder manifest to create.
[REQUIRED]
The Amazon Resource Name (ARN) of the vehicle model (model manifest).
A list of information about signal decoders.
Information about a signal decoder.
The fully qualified name of a signal decoder as defined in a vehicle model.
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.
The ID of a network interface that specifies what network protocol a vehicle follows.
Information about signal decoder using the Controller Area Network (CAN) protocol.
The ID of the message.
Whether the byte ordering of a CAN message is big-endian.
Whether the message data is specified as a signed value.
Indicates the beginning of the CAN message.
Indicates where data appears in the CAN message.
A multiplier used to decode the CAN message.
How many bytes of data are in the message.
The name of the signal.
Information about signal decoder using the On-board diagnostic (OBD) II protocol.
The length of the requested data.
The mode of operation (diagnostic service) in a message.
The diagnostic code used to request data from a vehicle for this signal.
A multiplier used to decode the message.
Indicates where data appears in the message.
Indicates the beginning of the message.
The length of a message.
The number of positions to shift bits in the message.
The number of bits to mask in a message.
A list of information about available network interfaces.
Represents a node and its specifications in an in-vehicle communication network. All signal decoders must be associated with a network node.
To return this information about all the network interfaces specified in a decoder manifest, use the API operation.
The ID of the network interface.
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.
Information about a network interface specified by the Controller Area Network (CAN) protocol.
The unique name of the interface.
The name of the communication protocol for the interface.
The version of the communication protocol for the interface.
Information about a network interface specified by the On-board diagnostic (OBD) II protocol.
The name of the interface.
The ID of the message requesting vehicle data.
The standard OBD II PID.
The maximum number message requests per second.
The maximum number message requests per diagnostic trouble code per second.
Whether to use extended IDs in the message.
Whether the vehicle has a transmission control module (TCM).
Metadata that can be used to manage the decoder manifest.
A set of key/value pairs that are used to manage the resource.
The tag's key.
The tag's value.
dict
Response Syntax
{
'name': 'string',
'arn': 'string'
}
Response Structure
(dict) --
name (string) --
The name of the created decoder manifest.
arn (string) --
The ARN of the created decoder manifest.
Exceptions
IoTFleetWise.Client.exceptions.ResourceNotFoundException
IoTFleetWise.Client.exceptions.InternalServerException
IoTFleetWise.Client.exceptions.ConflictException
IoTFleetWise.Client.exceptions.LimitExceededException
IoTFleetWise.Client.exceptions.DecoderManifestValidationException
IoTFleetWise.Client.exceptions.ThrottlingException
IoTFleetWise.Client.exceptions.ValidationException
IoTFleetWise.Client.exceptions.AccessDeniedException