Module Values.RelationalDatabaseBlueprintSource

Describes a database image, or blueprint. A blueprint describes the major engine version of a database.

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

    The ID for the database blueprint.

    *)
  2. engine : RelationalDatabaseEngine.t option;
    (*

    The database software of the database blueprint (for example, MySQL).

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

    The database engine version for the database blueprint (for example, 5.7.23).

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

    The description of the database engine for the database blueprint.

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

    The description of the database engine version for the database blueprint.

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

    A Boolean value indicating whether the engine version is the default for the database blueprint.

    *)
}
Sourceval make : ?blueprintId:??? -> ?engine:??? -> ?engineVersion:??? -> ?engineDescription:??? -> ?engineVersionDescription:??? -> ?isEngineDefault:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum 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