Skip to content

Bedrock Agent Runtime  >  Operations  >  list_invocation_steps

list_invocation_steps

Operation

list_invocation_steps async

list_invocation_steps(input: ListInvocationStepsInput, plugins: list[Plugin] | None = None) -> ListInvocationStepsOutput

Lists all invocation steps associated with a session and optionally, an invocation within the session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.

Parameters:

Name Type Description Default
input ListInvocationStepsInput

An instance of ListInvocationStepsInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
ListInvocationStepsOutput

An instance of ListInvocationStepsOutput.

Input

ListInvocationStepsInput dataclass

Dataclass for ListInvocationStepsInput structure.

Attributes

invocation_identifier class-attribute instance-attribute
invocation_identifier: str | None = None

The unique identifier (in UUID format) for the invocation to list invocation steps for.

max_results class-attribute instance-attribute
max_results: int = 10

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.

next_token class-attribute instance-attribute
next_token: str | None = None

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.

session_identifier class-attribute instance-attribute
session_identifier: str | None = None

The unique identifier for the session associated with the invocation steps. You can specify either the session's sessionId or its Amazon Resource Name (ARN).

Output

ListInvocationStepsOutput dataclass

Dataclass for ListInvocationStepsOutput structure.

Attributes

invocation_step_summaries instance-attribute
invocation_step_summaries: list[InvocationStepSummary]

A list of summaries for each invocation step associated with a session and if you specified it, an invocation within the session.

next_token class-attribute instance-attribute
next_token: str | None = None

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.