IoTAnalytics.Paginator.
ListPipelines
¶paginator = client.get_paginator('list_pipelines')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from IoTAnalytics.Client.list_pipelines()
.
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.
{
'pipelineSummaries': [
{
'pipelineName': 'string',
'reprocessingSummaries': [
{
'id': 'string',
'status': 'RUNNING'|'SUCCEEDED'|'CANCELLED'|'FAILED',
'creationTime': datetime(2015, 1, 1)
},
],
'creationTime': datetime(2015, 1, 1),
'lastUpdateTime': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
A list of PipelineSummary
objects.
A summary of information about a pipeline.
The name of the pipeline.
A summary of information about the pipeline reprocessing.
Information about pipeline reprocessing.
The reprocessingId
returned by StartPipelineReprocessing
.
The status of the pipeline reprocessing.
The time the pipeline reprocessing was created.
When the pipeline was created.
When the pipeline was last updated.
A token to resume pagination.