Module Values.LastUpdateSource

Describes the status of the last update on the environment, and any errors that were encountered.

Sourcetype nonrec t = {
  1. status : UpdateStatus.t option;
    (*

    The status of the last update on the environment.

    *)
  2. createdAt : UpdateCreatedAt.t option;
    (*

    The day and time of the last update on the environment.

    *)
  3. error : UpdateError.t option;
    (*

    The error that was encountered during the last update of the environment.

    *)
  4. source : UpdateSource.t option;
    (*

    The source of the last update to the environment. Includes internal processes by Amazon MWAA, such as an environment maintenance update.

    *)
  5. workerReplacementStrategy : WorkerReplacementStrategy.t option;
    (*

    The worker replacement strategy used in the last update of the environment.

    *)
}
Sourceval make : ?status:??? -> ?createdAt:??? -> ?error:??? -> ?source:??? -> ?workerReplacementStrategy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UpdateSource.t | `Structure of (string * [> `String of ErrorCode.t ]) list | `Timestamp of UpdateCreatedAt.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