Module Values.AIMLOptionsOutputSource

Container for parameters representing the state of machine learning features on the specified domain.

Sourcetype nonrec t = {
  1. naturalLanguageQueryGenerationOptions : NaturalLanguageQueryGenerationOptionsOutput.t option;
    (*

    Container for parameters required for natural language query generation on the specified domain.

    *)
  2. s3VectorsEngine : S3VectorsEngine.t option;
    (*

    Container for parameters representing the state of S3 vectors engine features on the specified domain.

    *)
  3. serverlessVectorAcceleration : ServerlessVectorAcceleration.t option;
    (*

    The current serverless vector acceleration configuration for the domain.

    *)
}
Sourceval make : ?naturalLanguageQueryGenerationOptions:??? -> ?s3VectorsEngine:??? -> ?serverlessVectorAcceleration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string ]) list ]) 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