Module Values.DBEngineVersionSource

This data type is used as a response element in the action DescribeDBEngineVersions.

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

    The name of the database engine.

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

    The version number of the database engine.

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

    The name of the DB parameter group family for the database engine.

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

    The description of the database engine.

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

    The description of the database engine version.

    *)
  6. defaultCharacterSet : CharacterSet.t option;
    (*

    (Not supported by Neptune)

    *)
  7. supportedCharacterSets : SupportedCharacterSetsList.t option;
    (*

    (Not supported by Neptune)

    *)
  8. validUpgradeTarget : ValidUpgradeTargetList.t option;
    (*

    A list of engine versions that this database engine version can be upgraded to.

    *)
  9. supportedTimezones : SupportedTimezonesList.t option;
    (*

    A list of the time zones supported by this engine for the Timezone parameter of the CreateDBInstance action.

    *)
  10. exportableLogTypes : LogTypeList.t option;
    (*

    The types of logs that the database engine has available for export to CloudWatch Logs.

    *)
  11. supportsLogExportsToCloudwatchLogs : Boolean.t option;
    (*

    A value that indicates whether the engine version supports exporting the log types specified by ExportableLogTypes to CloudWatch Logs.

    *)
  12. supportsReadReplica : Boolean.t option;
    (*

    Indicates whether the database engine version supports read replicas.

    *)
  13. supportsGlobalDatabases : Boolean.t option;
    (*

    A value that indicates whether you can use Aurora global databases with a specific DB engine version.

    *)
}
Sourceval make : ?engine:??? -> ?engineVersion:??? -> ?dBParameterGroupFamily:??? -> ?dBEngineDescription:??? -> ?dBEngineVersionDescription:??? -> ?defaultCharacterSet:??? -> ?supportedCharacterSets:??? -> ?validUpgradeTarget:??? -> ?supportedTimezones:??? -> ?exportableLogTypes:??? -> ?supportsLogExportsToCloudwatchLogs:??? -> ?supportsReadReplica:??? -> ?supportsGlobalDatabases:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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