Module Values.AwsOpenSearchServiceDomainServiceSoftwareOptionsDetailsSource

Provides information about the state of the domain relative to the latest service software.

Sourcetype nonrec t = {
  1. automatedUpdateDate : NonEmptyString.t option;
    (*

    The epoch time when the deployment window closes for required updates. After this time, OpenSearch Service schedules the software upgrade automatically.

    *)
  2. cancellable : Boolean.t option;
    (*

    Whether a request to update the domain can be canceled.

    *)
  3. currentVersion : NonEmptyString.t option;
    (*

    The version of the service software that is currently installed on the domain.

    *)
  4. description : NonEmptyString.t option;
    (*

    A more detailed description of the service software status.

    *)
  5. newVersion : NonEmptyString.t option;
    (*

    The most recent version of the service software.

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

    Whether a service software update is available for the domain.

    *)
  7. updateStatus : NonEmptyString.t option;
    (*

    The status of the service software update. Valid values are as follows: COMPLETED ELIGIBLE IN_PROGRESS NOT_ELIGIBLE PENDING_UPDATE

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

    Whether the service software update is optional.

    *)
}
Sourceval make : ?automatedUpdateDate:??? -> ?cancellable:??? -> ?currentVersion:??? -> ?description:??? -> ?newVersion:??? -> ?updateAvailable:??? -> ?updateStatus:??? -> ?optionalDeployment:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.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