Values.BaselineOperationSourceAn object of shape BaselineOperation, returning details about the specified Baseline operation ID.
type nonrec t = {operationIdentifier : OperationIdentifier.t option;The identifier of the specified operation.
*)operationType : BaselineOperationType.t option;An enumerated type (enum) with possible values of ENABLE_BASELINE, DISABLE_BASELINE, UPDATE_ENABLED_BASELINE, or RESET_ENABLED_BASELINE.
*)status : BaselineOperationStatus.t option;An enumerated type (enum) with possible values of SUCCEEDED, FAILED, or IN_PROGRESS.
*)startTime : Timestamp.t option;The start time of the operation, in ISO 8601 format.
*)endTime : Timestamp.t option;The end time of the operation (if applicable), in ISO 8601 format.
*)statusMessage : String_.t option;A status message that gives more information about the operation's status, if applicable.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of OperationIdentifier.t
| `Timestamp of Timestamp.t ])
list ]