Module Values.DataLakeUpdateStatusSource

The status of the last UpdateDataLake or DeleteDataLake API request. This is set to Completed after the configuration is updated, or removed if deletion of the data lake is successful.

Sourcetype nonrec t = {
  1. exception_ : DataLakeUpdateException.t option;
    (*

    The details of the last UpdateDataLakeor DeleteDataLake API request which failed.

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

    The unique ID for the last UpdateDataLake or DeleteDataLake API request.

    *)
  3. status : DataLakeStatus.t option;
    (*

    The status of the last UpdateDataLake or DeleteDataLake API request that was requested.

    *)
}
Sourceval make : ?exception_:??? -> ?requestId:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `String of String_.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