Values.GetECSServiceRecommendationProjectedMetricsRequestSourceReturns the projected metrics of Amazon ECS service recommendations.
type nonrec t = {serviceArn : ServiceArn.t;The ARN that identifies the Amazon ECS service. The following is the format of the ARN: arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name
*)stat : MetricStatistic.t;The statistic of the projected metrics.
*)period : Period.t;The granularity, in seconds, of the projected metrics data points.
*)startTime : Timestamp.t;The timestamp of the first projected metrics data point to return.
*)endTime : Timestamp.t;The timestamp of the last projected metrics data point to return.
*)}val make :
serviceArn:ServiceArn.t ->
stat:MetricStatistic.t ->
period:Period.t ->
startTime:Timestamp.t ->
endTime:Timestamp.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Period.t
| `String of ServiceArn.t
| `Timestamp of Timestamp.t ])
list ]