Get AWS IoT FleetWise decoder manifest information
You can use the GetDecoderManifest API operation to verify if network interfaces and signal decoders in the decoder manifest have been updated. The following example uses AWS CLI.
To retrieve information about a decoder manifest, run the following command.
Replace decoder-manifest
with the name of the decoder
manifest that you want to retrieve.
aws iotfleetwise get-decoder-manifest --name
decoder-manifest
Note
This operation is eventually consistent
If you enabled encryption using a customer managed AWS KMS key, include the following policy statement so that your role can invoke the GetDecoderManifest
API operation.
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "kms:Decrypt" ], "Resource": [ "arn:aws:kms:
KMS_KEY_REGION
:KMS_KEY_ACCOUNT_ID
:key/KMS_KEY_ID
" ] }, ] }