IoTRoboRunner.Paginator.
ListSites
¶paginator = client.get_paginator('list_sites')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from IoTRoboRunner.Client.list_sites()
.
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.
{
'sites': [
{
'arn': 'string',
'name': 'string',
'countryCode': 'string',
'createdAt': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
List of facilities.
Facility containing destinations, workers, activities, and tasks.
Site ARN.
The name of the site. Mutable after creation and unique within a given account.
A valid ISO 3166-1 alpha-2 code for the country in which the site resides. e.g., US.
Timestamp at which the resource was created.
A token to resume pagination.