CloudWatchEvidently.Paginator.
ListProjects
¶paginator = client.get_paginator('list_projects')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from CloudWatchEvidently.Client.list_projects()
.
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.
{
'projects': [
{
'activeExperimentCount': 123,
'activeLaunchCount': 123,
'arn': 'string',
'createdTime': datetime(2015, 1, 1),
'description': 'string',
'experimentCount': 123,
'featureCount': 123,
'lastUpdatedTime': datetime(2015, 1, 1),
'launchCount': 123,
'name': 'string',
'status': 'AVAILABLE'|'UPDATING',
'tags': {
'string': 'string'
}
},
],
'NextToken': 'string'
}
Response Structure
An array of structures that contain the configuration details of the projects in the Region.
A structure that contains configuration information about an Evidently project.
The number of experiments currently in the project.
The number of ongoing launches currently in the project.
The name or ARN of the project.
The date and time that the project is created.
The description of the project.
The number of experiments currently in the project.
The number of features currently in the project.
The date and time that the project was most recently updated.
The number of launches currently in the project, including launches that are ongoing, completed, and not started yet.
The name of the project.
The current state of the project.
The list of tag keys and values associated with this project.
A token to resume pagination.