Module Values.LandingZoneOperationDetailSource

Information about a landing zone operation.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. operationIdentifier : OperationIdentifier.t option;
    (*

    The operationIdentifier of the landing zone operation.

    *)
  3. 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.

    *)
  4. startTime : Timestamp.t option;
    (*

    The landing zone operation start time.

    *)
  5. endTime : Timestamp.t option;
    (*

    The landing zone operation end time.

    *)
  6. statusMessage : String_.t option;
    (*

    If the operation result is FAILED, this string contains a message explaining why the operation failed.

    *)
}
Sourceval make : ?operationType:??? -> ?operationIdentifier:??? -> ?status:??? -> ?startTime:??? -> ?endTime:??? -> ?statusMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of OperationIdentifier.t | `Timestamp of Timestamp.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