Module Values.UpgradeHistorySource

History of the last 10 upgrades and upgrade eligibility checks for an Amazon OpenSearch Service domain.

Sourcetype nonrec t = {
  1. upgradeName : UpgradeName.t option;
    (*

    A string that describes the upgrade.

    *)
  2. startTimestamp : StartTimestamp.t option;
    (*

    UTC timestamp at which the upgrade API call was made, in the format yyyy-MM-ddTHH:mm:ssZ.

    *)
  3. upgradeStatus : UpgradeStatus.t option;
    (*

    The current status of the upgrade. The status can take one of the following values: In Progress Succeeded Succeeded with Issues Failed

    *)
  4. stepsList : UpgradeStepsList.t option;
    (*

    A list of each step performed as part of a specific upgrade or upgrade eligibility check.

    *)
}
Sourceval make : ?upgradeName:??? -> ?startTimestamp:??? -> ?upgradeStatus:??? -> ?stepsList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Double of Double.t | `Enum of string | `List of [> `String of Issue.t ] list ]) list ] list | `String of UpgradeName.t | `Timestamp of StartTimestamp.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