Module Values.OperationSummarySource

Provides summary information for an operation that occurred on an App Runner service.

Sourcetype nonrec t = {
  1. id : UUID.t option;
    (*

    A unique ID of this operation. It's unique in the scope of the App Runner service.

    *)
  2. type_ : OperationType.t option;
    (*

    The type of operation. It indicates a specific action that occured.

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

    The current state of the operation.

    *)
  4. targetArn : AppRunnerResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the resource that the operation acted on (for example, an App Runner service).

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

    The time when the operation started. It's in the Unix time stamp format.

    *)
  6. endedAt : Timestamp.t option;
    (*

    The time when the operation ended. It's in the Unix time stamp format.

    *)
  7. updatedAt : Timestamp.t option;
    (*

    The time when the operation was last updated. It's in the Unix time stamp format.

    *)
}
Sourceval make : ?id:??? -> ?type_:??? -> ?status:??? -> ?targetArn:??? -> ?startedAt:??? -> ?endedAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUID.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