Module Values.MetricSource

This structure defines the metric used for a service level indicator, including the metric name, namespace, and dimensions

Sourcetype nonrec t = {
  1. namespace : Namespace.t option;
    (*

    The namespace of the metric. For more information, see Namespaces.

    *)
  2. metricName : MetricName.t option;
    (*

    The name of the metric to use.

    *)
  3. dimensions : Dimensions.t option;
    (*

    An array of one or more dimensions to use to define the metric that you want to use. For more information, see Dimensions.

    *)
}
Sourceval make : ?namespace:??? -> ?metricName:??? -> ?dimensions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of DimensionName.t ]) list ] list | `String of Namespace.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