Module Values.ServerlessCacheConfigurationSource

The configuration settings for a specific serverless cache.

Sourcetype nonrec t = {
  1. serverlessCacheName : String_.t option;
    (*

    The identifier of a serverless cache.

    *)
  2. engine : String_.t option;
    (*

    The engine that the serverless cache is configured with.

    *)
  3. majorEngineVersion : String_.t option;
    (*

    The engine version number that the serverless cache is configured with.

    *)
}
Sourceval make : ?serverlessCacheName:??? -> ?engine:??? -> ?majorEngineVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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