Module Values.UpgradeTargetSource

The version of the database engine that an instance can be upgraded to.

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

    The name of the upgrade target database engine.

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

    The version number of the upgrade target database engine.

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

    The version of the database engine that an instance can be upgraded to.

    *)
  4. autoUpgrade : Boolean.t option;
    (*

    A value that indicates whether the target version is applied to any source DB instances that have AutoMinorVersionUpgrade set to true.

    *)
  5. isMajorVersionUpgrade : Boolean.t option;
    (*

    A value that indicates whether a database engine is upgraded to a major version.

    *)
}
Sourceval make : ?engine:??? -> ?engineVersion:??? -> ?description:??? -> ?autoUpgrade:??? -> ?isMajorVersionUpgrade:??? -> 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