Module Values.ECSServiceProjectedMetricSource

Describes the projected metrics of an Amazon ECS service recommendation option. To determine the performance difference between your current Amazon ECS service and the recommended option, compare the metric data of your service against its projected metric data.

Sourcetype nonrec t = {
  1. name : ECSServiceMetricName.t option;
    (*

    The name of the projected metric. The following metrics are available: Cpu — The percentage of allocated compute units that are currently in use on the service tasks. Memory — The percentage of memory that's currently in use on the service tasks.

    *)
  2. timestamps : Timestamps.t option;
    (*

    The timestamps of the projected metric.

    *)
  3. upperBoundValues : MetricValues.t option;
    (*

    The upper bound values for the projected metric.

    *)
  4. lowerBoundValues : MetricValues.t option;
    (*

    The lower bound values for the projected metric.

    *)
}
Sourceval make : ?name:??? -> ?timestamps:??? -> ?upperBoundValues:??? -> ?lowerBoundValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Double of MetricValue.t | `Timestamp of Timestamp.t ] list ]) 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