Values.AgentKnowledgeBaseSummarySourceContains details about a knowledge base associated with an agent.
type nonrec t = {knowledgeBaseId : Id.t option;The unique identifier of the knowledge base associated with an agent.
*)description : Description.t option;The description of the knowledge base associated with an agent.
*)knowledgeBaseState : KnowledgeBaseState.t option;Specifies whether the agent uses the knowledge base or not when sending an InvokeAgent request.
*)updatedAt : DateTimestamp.t option;The time at which the knowledge base associated with an agent was last updated.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of Id.t
| `Timestamp of DateTimestamp.t ])
list ]