Module Values.UpdateAgentKnowledgeBaseRequestSource

Updates the configuration for a knowledge base that has been associated with an agent.

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

    The unique identifier of the agent associated with the knowledge base that you want to update.

    *)
  2. agentVersion : DraftVersion.t;
    (*

    The version of the agent associated with the knowledge base that you want to update.

    *)
  3. knowledgeBaseId : Id.t;
    (*

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

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

    Specifies a new description for the knowledge base associated with an agent.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?knowledgeBaseState:??? -> agentId:Id.t -> agentVersion:DraftVersion.t -> knowledgeBaseId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.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