Module Values.DBEngineVersionSource

Detailed information about an engine version.

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 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. validUpgradeTarget : ValidUpgradeTargetList.t option;
    (*

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

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

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

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

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

    *)
  9. supportedCACertificateIdentifiers : CACertificateIdentifiersList.t option;
    (*

    A list of the supported CA certificate identifiers. For more information, see Updating Your Amazon DocumentDB TLS Certificates and Encrypting Data in Transit in the Amazon DocumentDB Developer Guide.

    *)
  10. supportsCertificateRotationWithoutRestart : BooleanOptional.t option;
    (*

    Indicates whether the engine version supports rotating the server certificate without rebooting the DB instance.

    *)
  11. serverlessV2FeaturesSupport : ServerlessV2FeaturesSupport.t option;
    (*

    Specifies any Amazon DocumentDB Serverless properties or limits that differ between Amazon DocumentDB engine versions. You can test the values of this attribute when deciding which Amazon DocumentDB version to use in a new or upgraded cluster. You can also retrieve the version of an existing cluster and check whether that version supports certain Amazon DocumentDB Serverless features before you attempt to use those features.

    *)
}
Sourceval make : ?engine:??? -> ?engineVersion:??? -> ?dBParameterGroupFamily:??? -> ?dBEngineDescription:??? -> ?dBEngineVersionDescription:??? -> ?validUpgradeTarget:??? -> ?exportableLogTypes:??? -> ?supportsLogExportsToCloudwatchLogs:??? -> ?supportedCACertificateIdentifiers:??? -> ?supportsCertificateRotationWithoutRestart:??? -> ?serverlessV2FeaturesSupport:??? -> 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 * [> `Double of DoubleOptional.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