Values.MetricsDataSourceSourceAn object that contains details about the data source for the metrics export.
type nonrec t = {dimensions : ExportDimensions.t;An object that contains a mapping between a MetricDimensionName and MetricDimensionValue to filter metrics by. Must contain a least 1 dimension but no more than 3 unique ones.
*)namespace : MetricNamespace.t;The metrics namespace - e.g., VDM.
*)metrics : ExportMetrics.t;A list of ExportMetric objects to export.
*)startDate : Timestamp.t;Represents the start date for the export interval as a timestamp.
*)endDate : Timestamp.t;Represents the end date for the export interval as a timestamp.
*)}val make :
dimensions:ExportDimensions.t ->
namespace:MetricNamespace.t ->
metrics:ExportMetrics.t ->
startDate:Timestamp.t ->
endDate:Timestamp.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of
[> `Structure of (string * [> `Enum of string ]) list ] list
| `Map of
([> `Enum of string ]
* [> `List of [> `String of MetricDimensionValue.t ] list ])
list
| `Timestamp of Timestamp.t ])
list ]