Select your cookie preferences

We use cookies and similar tools to enhance your experience, provide our services, deliver relevant advertising, and make improvements. Approved third parties also use these tools to help us deliver advertising and provide certain site features.

ListProjects

class 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'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    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.

  • PageSize (integer) --

    The size of each page.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    '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

  • (dict) --
    • 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) --
    • NextToken (string) --

      A token to resume pagination.