:doc:`BedrockAgentCoreControl <../../bedrock-agentcore-control>` / Paginator / ListOnlineEvaluationConfigs

***************************
ListOnlineEvaluationConfigs
***************************



.. py:class:: BedrockAgentCoreControl.Paginator.ListOnlineEvaluationConfigs

  ::

    
    paginator = client.get_paginator('list_online_evaluation_configs')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`BedrockAgentCoreControl.Client.list_online_evaluation_configs`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListOnlineEvaluationConfigs>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type PaginationConfig: dict
    :param PaginationConfig: 

      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.

        

      
    
    
    :rtype: dict
    :returns: 
      
      **Response Syntax**

      
      ::

        {
            'onlineEvaluationConfigs': [
                {
                    'onlineEvaluationConfigArn': 'string',
                    'onlineEvaluationConfigId': 'string',
                    'onlineEvaluationConfigName': 'string',
                    'description': 'string',
                    'status': 'ACTIVE'|'CREATING'|'CREATE_FAILED'|'UPDATING'|'UPDATE_FAILED'|'DELETING',
                    'executionStatus': 'ENABLED'|'DISABLED',
                    'createdAt': datetime(2015, 1, 1),
                    'updatedAt': datetime(2015, 1, 1),
                    'failureReason': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **onlineEvaluationConfigs** *(list) --* 

          The list of online evaluation configuration summaries containing basic information about each configuration.

          
          

          - *(dict) --* 

            The summary information about an online evaluation configuration, including basic metadata and execution status.

            
            

            - **onlineEvaluationConfigArn** *(string) --* 

              The Amazon Resource Name (ARN) of the online evaluation configuration.

              
            

            - **onlineEvaluationConfigId** *(string) --* 

              The unique identifier of the online evaluation configuration.

              
            

            - **onlineEvaluationConfigName** *(string) --* 

              The name of the online evaluation configuration.

              
            

            - **description** *(string) --* 

              The description of the online evaluation configuration.

              
            

            - **status** *(string) --* 

              The status of the online evaluation configuration.

              
            

            - **executionStatus** *(string) --* 

              The execution status indicating whether the online evaluation is currently running.

              
            

            - **createdAt** *(datetime) --* 

              The timestamp when the online evaluation configuration was created.

              
            

            - **updatedAt** *(datetime) --* 

              The timestamp when the online evaluation configuration was last updated.

              
            

            - **failureReason** *(string) --* 

              The reason for failure if the online evaluation configuration execution failed.

              
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    