Module Values.ServiceRevisionSummarySource

The information about the number of requested, pending, and running tasks for a service revision.

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

    The ARN of the service revision.

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

    The number of requested tasks for the service revision.

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

    The number of running tasks for the service revision.

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

    The number of pending tasks for the service revision.

    *)
  5. requestedTestTrafficWeight : Double.t option;
    (*

    The percentage of test traffic that is directed to this service revision. This value represents a snapshot of the traffic distribution and may not reflect real-time changes during active deployments. Valid values are 0.0 to 100.0.

    *)
  6. requestedProductionTrafficWeight : Double.t option;
    (*

    The percentage of production traffic that is directed to this service revision. This value represents a snapshot of the traffic distribution and may not reflect real-time changes during active deployments. Valid values are 0.0 to 100.0.

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