Module Values.GetTimeSeriesServiceStatisticsRequestSource

Get an aggregation of service statistics defined by a specific time range.

Sourcetype nonrec t = {
  1. startTime : Timestamp.t;
    (*

    The start of the time frame for which to aggregate statistics.

    *)
  2. endTime : Timestamp.t;
    (*

    The end of the time frame for which to aggregate statistics.

    *)
  3. groupName : GroupName.t option;
    (*

    The case-sensitive name of the group for which to pull statistics from.

    *)
  4. groupARN : GroupARN.t option;
    (*

    The Amazon Resource Name (ARN) of the group for which to pull statistics from.

    *)
  5. 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.

    *)
  6. period : NullableInteger.t option;
    (*

    Aggregation period in seconds.

    *)
  7. forecastStatistics : NullableBoolean.t option;
    (*

    The forecasted high and low fault count values. Forecast enabled requests require the EntitySelectorExpression ID be provided.

    *)
  8. nextToken : String_.t option;
    (*

    Pagination token.

    *)
}
Sourceval context_ : string
Sourceval make : ?groupName:??? -> ?groupARN:??? -> ?entitySelectorExpression:??? -> ?period:??? -> ?forecastStatistics:??? -> ?nextToken:??? -> startTime:Timestamp.t -> endTime:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Integer of NullableInteger.t | `String of GroupName.t | `Timestamp of Timestamp.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