Module Values.EngineVersionSource

Provides information about a replication instance version.

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

    The version number of the replication instance.

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

    The lifecycle status of the replication instance version. Valid values are DEPRECATED, DEFAULT_VERSION, and ACTIVE.

    *)
  3. releaseStatus : ReleaseStatusValues.t option;
    (*

    The release status of the replication instance version.

    *)
  4. launchDate : TStamp.t option;
    (*

    The date when the replication instance version became publicly available.

    *)
  5. autoUpgradeDate : TStamp.t option;
    (*

    The date when the replication instance will be automatically upgraded. This setting only applies if the auto-minor-version setting is enabled.

    *)
  6. deprecationDate : TStamp.t option;
    (*

    The date when the replication instance version will be deprecated and can no longer be requested.

    *)
  7. forceUpgradeDate : TStamp.t option;
    (*

    The date when the replication instance will have a version upgrade forced.

    *)
  8. availableUpgrades : AvailableUpgradesList.t option;
    (*

    The list of valid replication instance versions that you can upgrade to.

    *)
}
Sourceval make : ?version:??? -> ?lifecycle:??? -> ?releaseStatus:??? -> ?launchDate:??? -> ?autoUpgradeDate:??? -> ?deprecationDate:??? -> ?forceUpgradeDate:??? -> ?availableUpgrades:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Timestamp of TStamp.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