Get AWS IoT FleetWise signal catalog information - AWS IoT FleetWise

AWS IoT FleetWise will no longer be open to new customers starting April 30, 2026. If you would like to use AWS IoT FleetWise, sign up prior to that date. Existing customers can continue to use the service as normal. For more information, see AWS IoT FleetWise availability change.

Get AWS IoT FleetWise signal catalog information

You can use the GetSignalCatalog API operation to retrieve signal catalog information. The following example uses AWS CLI.

To retrieve information about a signal catalog, run the following command.

Replace signal-catalog-name with the name of the signal catalog that you want to retrieve.

aws iotfleetwise get-signal-catalog --name signal-catalog-name

If you enabled encryption using a customer managed AWS KMS key, include the following policy statement so that your role can invoke the GetSignalCatalog API operation.

JSON
{ "Version":"2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "kms:Decrypt" ], "Resource": [ "arn:aws:kms:us-east-1:111122223333:key/KMS_KEY_ID" ] } ] }
Note

This operation is eventually consistent. In other words, changes to the signal catalog might not be reflected immediately.