2025/06/12 - AWS IoT FleetWise - 1 updated api methods
Changes Add new status READY_FOR_CHECKIN used for vehicle synchronisation
{'campaigns': {'status': {'READY_FOR_CHECKIN'}}}
Retrieves information about the status of campaigns, decoder manifests, or state templates associated with a vehicle.
See also: AWS API Documentation
Request Syntax
client.get_vehicle_status( nextToken='string', maxResults=123, vehicleName='string' )
string
A pagination token for the next set of results.
If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. This parameter is only supported for resources of type CAMPAIGN.
integer
The maximum number of items to return, between 1 and 100, inclusive. This parameter is only supported for resources of type CAMPAIGN.
string
[REQUIRED]
The ID of the vehicle to retrieve information about.
dict
Response Syntax
{ 'campaigns': [ { 'campaignName': 'string', 'vehicleName': 'string', 'status': 'CREATED'|'READY'|'HEALTHY'|'SUSPENDED'|'DELETING'|'READY_FOR_CHECKIN' }, ], 'nextToken': 'string' }
Response Structure
(dict) --
campaigns (list) --
Lists information about the state of the vehicle with deployed campaigns.
(dict) --
Information about a campaign associated with a vehicle.
campaignName (string) --
The name of a campaign.
vehicleName (string) --
The unique ID of the vehicle.
status (string) --
The status of a campaign, which can be one of the following:
CREATED - The campaign exists but is not yet approved.
READY - The campaign is approved but has not been deployed to the vehicle. Data has not arrived at the vehicle yet.
HEALTHY - The campaign is deployed to the vehicle.
SUSPENDED - The campaign is suspended and data collection is paused.
DELETING - The campaign is being removed from the vehicle.
READY_FOR_CHECKIN - The campaign is approved and waiting for vehicle check-in before deployment.
nextToken (string) --
The token to retrieve the next set of results, or null if there are no more results.