BedrockAgentCoreControl / Paginator / ListOnlineEvaluationConfigs
ListOnlineEvaluationConfigs¶
- class BedrockAgentCoreControl.Paginator.ListOnlineEvaluationConfigs¶
paginator = client.get_paginator('list_online_evaluation_configs')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
BedrockAgentCoreControl.Client.list_online_evaluation_configs().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
NextTokenwill 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
NextTokenfrom a previous response.
- Return type:
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.