AgentsforBedrockRuntime / Client / list_invocations

list_invocations#

AgentsforBedrockRuntime.Client.list_invocations(**kwargs)#

Lists all invocations associated with a specific session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.

See also: AWS API Documentation

Request Syntax

response = client.list_invocations(
    maxResults=123,
    nextToken='string',
    sessionIdentifier='string'
)
Parameters:
  • maxResults (integer) – The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • nextToken (string) – If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

  • sessionIdentifier (string) –

    [REQUIRED]

    The unique identifier for the session to list invocations for. You can specify either the session’s sessionId or its Amazon Resource Name (ARN).

Return type:

dict

Returns:

Response Syntax

{
    'invocationSummaries': [
        {
            'createdAt': datetime(2015, 1, 1),
            'invocationId': 'string',
            'sessionId': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • invocationSummaries (list) –

      A list of invocation summaries associated with the session.

      • (dict) –

        Contains details about an invocation in a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.

        • createdAt (datetime) –

          The timestamp for when the invocation was created.

        • invocationId (string) –

          A unique identifier for the invocation in UUID format.

        • sessionId (string) –

          The unique identifier for the session associated with the invocation.

    • nextToken (string) –

      If the total number of results is greater than the maxResults value provided in the request, use this token when making another request in the nextToken field to return the next batch of results.

Exceptions