Module Values.RelationalDatabaseParameterSource

Describes the parameters of a database.

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

    Specifies the valid range of values for the parameter.

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

    Indicates when parameter updates are applied. Can be immediate or pending-reboot.

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

    Specifies the engine-specific parameter type.

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

    Specifies the valid data type for the parameter.

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

    Provides a description of the parameter.

    *)
  6. isModifiable : Boolean.t option;
    (*

    A Boolean value indicating whether the parameter can be modified.

    *)
  7. parameterName : String_.t option;
    (*

    Specifies the name of the parameter.

    *)
  8. parameterValue : String_.t option;
    (*

    Specifies the value of the parameter.

    *)
}
Sourceval make : ?allowedValues:??? -> ?applyMethod:??? -> ?applyType:??? -> ?dataType:??? -> ?description:??? -> ?isModifiable:??? -> ?parameterName:??? -> ?parameterValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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