IoTAnalytics.Paginator.
ListDatasets
¶paginator = client.get_paginator('list_datasets')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from IoTAnalytics.Client.list_datasets()
.
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.
{
'datasetSummaries': [
{
'datasetName': 'string',
'status': 'CREATING'|'ACTIVE'|'DELETING',
'creationTime': datetime(2015, 1, 1),
'lastUpdateTime': datetime(2015, 1, 1),
'triggers': [
{
'schedule': {
'expression': 'string'
},
'dataset': {
'name': 'string'
}
},
],
'actions': [
{
'actionName': 'string',
'actionType': 'QUERY'|'CONTAINER'
},
]
},
],
'NextToken': 'string'
}
Response Structure
A list of DatasetSummary
objects.
A summary of information about a dataset.
The name of the dataset.
The status of the dataset.
The time the dataset was created.
The last time the dataset was updated.
A list of triggers. A trigger causes dataset content to be populated at a specified time interval or when another dataset is populated. The list of triggers can be empty or contain up to five DataSetTrigger
objects
The DatasetTrigger
that specifies when the dataset is automatically updated.
The Schedule when the trigger is initiated.
The expression that defines when to trigger an update. For more information, see Schedule Expressions for Rules in the Amazon CloudWatch Events User Guide .
The dataset whose content creation triggers the creation of this dataset's contents.
The name of the dataset whose content generation triggers the new dataset content generation.
A list of DataActionSummary
objects.
Information about the action that automatically creates the dataset's contents.
The name of the action that automatically creates the dataset's contents.
The type of action by which the dataset's contents are automatically created.
A token to resume pagination.