Values.LandingZoneOperationDetailSourceInformation about a landing zone operation.
type nonrec t = {operationType : LandingZoneOperationType.t option;The landing zone operation type. Valid values: DELETE: The DeleteLandingZone operation. CREATE: The CreateLandingZone operation. UPDATE: The UpdateLandingZone operation. RESET: The ResetLandingZone operation.
*)operationIdentifier : OperationIdentifier.t option;The operationIdentifier of the landing zone operation.
*)status : LandingZoneOperationStatus.t option;Valid values: SUCCEEDED: The landing zone operation succeeded. IN_PROGRESS: The landing zone operation is in progress. FAILED: The landing zone operation failed.
*)startTime : Timestamp.t option;The landing zone operation start time.
*)endTime : Timestamp.t option;The landing zone operation end time.
*)statusMessage : String_.t option;If the operation result is FAILED, this string contains a message explaining why the operation failed.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of OperationIdentifier.t
| `Timestamp of Timestamp.t ])
list ]