Values.OperationSummarySourceProvides summary information for an operation that occurred on an App Runner service.
type nonrec t = {id : UUID.t option;A unique ID of this operation. It's unique in the scope of the App Runner service.
*)type_ : OperationType.t option;The type of operation. It indicates a specific action that occured.
*)status : OperationStatus.t option;The current state of the operation.
*)targetArn : AppRunnerResourceArn.t option;The Amazon Resource Name (ARN) of the resource that the operation acted on (for example, an App Runner service).
*)startedAt : Timestamp.t option;The time when the operation started. It's in the Unix time stamp format.
*)endedAt : Timestamp.t option;The time when the operation ended. It's in the Unix time stamp format.
*)updatedAt : Timestamp.t option;The time when the operation was last updated. It's in the Unix time stamp format.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string | `String of UUID.t | `Timestamp of Timestamp.t ])
list ]