list_agent_knowledge_bases¶
Operation¶
list_agent_knowledge_bases
async
¶
list_agent_knowledge_bases(input: ListAgentKnowledgeBasesInput, plugins: list[Plugin] | None = None) -> ListAgentKnowledgeBasesOutput
Lists knowledge bases associated with an agent and information about each one.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
ListAgentKnowledgeBasesInput
|
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 |
|---|---|
ListAgentKnowledgeBasesOutput
|
An instance of |
Input¶
ListAgentKnowledgeBasesInput
dataclass
¶
Dataclass for ListAgentKnowledgeBasesInput structure.
Attributes¶
agent_id
class-attribute
instance-attribute
¶
agent_id: str | None = None
The unique identifier of the agent for which to return information about knowledge bases associated with it.
agent_version
class-attribute
instance-attribute
¶
agent_version: str | None = None
The version of the agent for which to return information about knowledge bases associated with it.
max_results
class-attribute
instance-attribute
¶
max_results: int | None = None
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.
Output¶
ListAgentKnowledgeBasesOutput
dataclass
¶
Dataclass for ListAgentKnowledgeBasesOutput structure.
Attributes¶
agent_knowledge_base_summaries
instance-attribute
¶
agent_knowledge_base_summaries: list[AgentKnowledgeBaseSummary]
A list of objects, each of which contains information about a knowledge base associated with the agent.
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.