Module Values.ECSServiceRecommendedOptionProjectedMetricSource

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. recommendedCpuUnits : CpuSize.t option;
    (*

    The recommended CPU size for the Amazon ECS service.

    *)
  2. recommendedMemorySize : MemorySize.t option;
    (*

    The recommended memory size for the Amazon ECS service.

    *)
  3. projectedMetrics : ECSServiceProjectedMetrics.t option;
    (*

    An array of objects that describe the projected metric.

    *)
}
Sourceval make : ?recommendedCpuUnits:??? -> ?recommendedMemorySize:??? -> ?projectedMetrics:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of CpuSize.t | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Double of MetricValue.t | `Timestamp of Timestamp.t ] list ]) list ] 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