IoTFleetWise / Paginator / GetVehicleStatus
GetVehicleStatus#
- class IoTFleetWise.Paginator.GetVehicleStatus#
paginator = client.get_paginator('get_vehicle_status')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
IoTFleetWise.Client.get_vehicle_status()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( vehicleName='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
vehicleName (string) –
[REQUIRED]
The ID of the vehicle to retrieve information about.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextToken
will be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'campaigns': [ { 'campaignName': 'string', 'vehicleName': 'string', 'status': 'CREATED'|'READY'|'HEALTHY'|'SUSPENDED'|'DELETING' }, ], '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 has been created successfully but has not been approved.READY
- The campaign has been approved but has not been deployed to the vehicle.HEALTHY
- The campaign has been deployed to the vehicle.SUSPENDED
- The campaign has been suspended and data collection is paused.DELETING
- The campaign is being removed from the vehicle.
NextToken (string) –
A token to resume pagination.