KafkaConnect.Paginator.
ListWorkerConfigurations
¶paginator = client.get_paginator('list_worker_configurations')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from KafkaConnect.Client.list_worker_configurations()
.
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.
{
'workerConfigurations': [
{
'creationTime': datetime(2015, 1, 1),
'description': 'string',
'latestRevision': {
'creationTime': datetime(2015, 1, 1),
'description': 'string',
'revision': 123
},
'name': 'string',
'workerConfigurationArn': 'string'
},
],
'NextToken': 'string'
}
Response Structure
An array of worker configuration descriptions.
The summary of a worker configuration.
The time that a worker configuration was created.
The description of a worker configuration.
The latest revision of a worker configuration.
The time that a worker configuration revision was created.
The description of a worker configuration revision.
The revision of a worker configuration.
The name of the worker configuration.
The Amazon Resource Name (ARN) of the worker configuration.
A token to resume pagination.