Module Values.CacheEngineVersionSource

Provides all of the details about a particular cache engine version.

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

    The name of the cache engine.

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

    The version number of the cache engine.

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

    The name of the cache parameter group family associated with this cache engine. Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x | redis7

    *)
  4. cacheEngineDescription : String_.t option;
    (*

    The description of the cache engine.

    *)
  5. cacheEngineVersionDescription : String_.t option;
    (*

    The description of the cache engine version.

    *)
}
Sourceval make : ?engine:??? -> ?engineVersion:??? -> ?cacheParameterGroupFamily:??? -> ?cacheEngineDescription:??? -> ?cacheEngineVersionDescription:??? -> 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