Module Values.ServiceCurrentRevisionSummarySource

The summary of the current service revision configuration

Sourcetype nonrec t = {
  1. arn : String_.t option;
    (*

    The ARN of the current service revision.

    *)
  2. requestedTaskCount : Integer.t option;
    (*

    The number of requested tasks in the current service revision

    *)
  3. runningTaskCount : Integer.t option;
    (*

    The number of running tasks of the current service revision

    *)
  4. pendingTaskCount : Integer.t option;
    (*

    The number of pending tasks in the current service revision

    *)
}
Sourceval make : ?arn:??? -> ?requestedTaskCount:??? -> ?runningTaskCount:??? -> ?pendingTaskCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.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