Module Values.DefaultClusterParametersSource

Describes the default cluster parameters for a parameter group family.

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

    The name of the cluster parameter group family to which the engine default parameters apply.

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

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

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

    The list of cluster default parameters.

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