Module Values.EngineDefaultsSource

Represents the output of a DescribeEngineDefaultParameters operation.

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

    Specifies the name of the cache parameter group family to which the engine default parameters apply. Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 | redis6.x | redis7

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

    Provides an identifier to allow retrieval of paginated results.

    *)
  3. parameters : ParametersList.t option;
    (*

    Contains a list of engine default parameters.

    *)
  4. cacheNodeTypeSpecificParameters : CacheNodeTypeSpecificParametersList.t option;
    (*

    A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.

    *)
}
Sourceval make : ?cacheParameterGroupFamily:??? -> ?marker:??? -> ?parameters:??? -> ?cacheNodeTypeSpecificParameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ] list | `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