CloudWatchEvidently / Client / list_projects
list_projects¶
- CloudWatchEvidently.Client.list_projects(**kwargs)¶
Returns configuration details about all the projects in the current Region in your account.
Danger
This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.
See also: AWS API Documentation
Request Syntax
response = client.list_projects( maxResults=123, nextToken='string' )
- Parameters:
maxResults (integer) – The maximum number of results to include in the response.
nextToken (string) – The token to use when requesting the next set of results. You received this token from a previous
ListProjectsoperation.
- Return type:
dict
- Returns:
Response Syntax
{ 'nextToken': 'string', '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' } }, ] }
Response Structure
(dict) –
nextToken (string) –
The token to use in a subsequent
ListProjectsoperation to return the next set of results.projects (list) –
An array of structures that contain the configuration details of the projects in the Region.
(dict) –
A structure that contains configuration information about an Evidently project.
activeExperimentCount (integer) –
The number of experiments currently in the project.
activeLaunchCount (integer) –
The number of ongoing launches currently in the project.
arn (string) –
The name or ARN of the project.
createdTime (datetime) –
The date and time that the project is created.
description (string) –
The description of the project.
experimentCount (integer) –
The number of experiments currently in the project.
featureCount (integer) –
The number of features currently in the project.
lastUpdatedTime (datetime) –
The date and time that the project was most recently updated.
launchCount (integer) –
The number of launches currently in the project, including launches that are ongoing, completed, and not started yet.
name (string) –
The name of the project.
status (string) –
The current state of the project.
tags (dict) –
The list of tag keys and values associated with this project.
(string) –
(string) –
Exceptions