Module Values.AgentKnowledgeBaseSummarySource

Contains details about a knowledge base associated with an agent.

Sourcetype nonrec t = {
  1. knowledgeBaseId : Id.t option;
    (*

    The unique identifier of the knowledge base associated with an agent.

    *)
  2. description : Description.t option;
    (*

    The description of the knowledge base associated with an agent.

    *)
  3. knowledgeBaseState : KnowledgeBaseState.t option;
    (*

    Specifies whether the agent uses the knowledge base or not when sending an InvokeAgent request.

    *)
  4. updatedAt : DateTimestamp.t option;
    (*

    The time at which the knowledge base associated with an agent was last updated.

    *)
}
Sourceval make : ?knowledgeBaseId:??? -> ?description:??? -> ?knowledgeBaseState:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.t | `Timestamp of DateTimestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t