list_invocations¶
Operation¶
list_invocations
async
¶
list_invocations(input: ListInvocationsInput, plugins: list[Plugin] | None = None) -> ListInvocationsOutput
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.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
ListInvocationsInput
|
An instance of |
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 |
|---|---|
ListInvocationsOutput
|
An instance of |
Input¶
ListInvocationsInput
dataclass
¶
Dataclass for ListInvocationsInput structure.
Attributes¶
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.
Output¶
ListInvocationsOutput
dataclass
¶
Dataclass for ListInvocationsOutput structure.
Attributes¶
invocation_summaries
instance-attribute
¶
invocation_summaries: list[InvocationSummary]
A list of invocation summaries associated with the session.