IoTRoboRunner.Paginator.
ListWorkerFleets
¶paginator = client.get_paginator('list_worker_fleets')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from IoTRoboRunner.Client.list_worker_fleets()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
site='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
[REQUIRED]
Site ARN.
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.
dict
Response Syntax
{
'workerFleets': [
{
'arn': 'string',
'id': 'string',
'name': 'string',
'site': 'string',
'createdAt': datetime(2015, 1, 1),
'updatedAt': datetime(2015, 1, 1),
'additionalFixedProperties': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
workerFleets (list) --
List of worker fleets.
(dict) --
A collection of workers organized within a facility.
arn (string) --
Full ARN of the worker fleet.
id (string) --
Filters access by the worker fleet's identifier
name (string) --
Human friendly name of the resource.
site (string) --
Site ARN.
createdAt (datetime) --
Timestamp at which the resource was created.
updatedAt (datetime) --
Timestamp at which the resource was last updated.
additionalFixedProperties (string) --
JSON blob containing additional fixed properties regarding the worker fleet
NextToken (string) --
A token to resume pagination.