Module Values.AIMLOptionsInputSource

Container for parameters required to enable all machine learning features.

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

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

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

    Container for parameters required to enable S3 vectors engine features on the specified domain.

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

    Specifies whether to enable serverless vector acceleration for the domain. When enabled, provides GPU-accelerated vector search capabilities for improved performance on vector workloads.

    *)
}
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