Module Values.MetricInfoSource

Information about the CloudWatch metric that reflects quota usage.

Sourcetype nonrec t = {
  1. metricNamespace : QuotaMetricNamespace.t option;
    (*

    The namespace of the metric.

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

    The name of the metric.

    *)
  3. metricDimensions : MetricDimensionsMapDefinition.t option;
    (*

    The metric dimension. This is a name/value pair that is part of the identity of a metric.

    *)
  4. metricStatisticRecommendation : Statistic.t option;
    (*

    The metric statistic that we recommend you use when determining quota usage.

    *)
}
Sourceval make : ?metricNamespace:??? -> ?metricName:??? -> ?metricDimensions:??? -> ?metricStatisticRecommendation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of MetricDimensionName.t ] * [> `String of MetricDimensionValue.t ]) list | `String of QuotaMetricNamespace.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