Values.GetTimeSeriesServiceStatisticsRequestSourceGet an aggregation of service statistics defined by a specific time range.
type nonrec t = {startTime : Timestamp.t;The start of the time frame for which to aggregate statistics.
*)endTime : Timestamp.t;The end of the time frame for which to aggregate statistics.
*)groupName : GroupName.t option;The case-sensitive name of the group for which to pull statistics from.
*)groupARN : GroupARN.t option;The Amazon Resource Name (ARN) of the group for which to pull statistics from.
*)entitySelectorExpression : EntitySelectorExpression.t option;A filter expression defining entities that will be aggregated for statistics. Supports ID, service, and edge functions. If no selector expression is specified, edge statistics are returned.
*)period : NullableInteger.t option;Aggregation period in seconds.
*)forecastStatistics : NullableBoolean.t option;The forecasted high and low fault count values. Forecast enabled requests require the EntitySelectorExpression ID be provided.
*)nextToken : String_.t option;Pagination token.
*)}val make :
?groupName:??? ->
?groupARN:??? ->
?entitySelectorExpression:??? ->
?period:??? ->
?forecastStatistics:??? ->
?nextToken:??? ->
startTime:Timestamp.t ->
endTime:Timestamp.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of NullableBoolean.t
| `Integer of NullableInteger.t
| `String of GroupName.t
| `Timestamp of Timestamp.t ])
list ]