IoTFleetWise.Paginator.
ListFleets
¶paginator = client.get_paginator('list_fleets')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from IoTFleetWise.Client.list_fleets()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
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.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'fleetSummaries': [
{
'id': 'string',
'arn': 'string',
'description': 'string',
'signalCatalogArn': 'string',
'creationTime': datetime(2015, 1, 1),
'lastModificationTime': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
A list of information for each fleet.
Information about a fleet.
You can use the API operation to return this information about multiple fleets.
The unique ID of the fleet.
The Amazon Resource Name (ARN) of the fleet.
A brief description of the fleet.
The ARN of the signal catalog associated with the fleet.
The time the fleet was created, in seconds since epoch (January 1, 1970 at midnight UTC time).
The time the fleet was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).
A token to resume pagination.