Module Values.PredictiveScalingMetricSource

Describes the scaling metric.

Sourcetype nonrec t = {
  1. dimensions : PredictiveScalingMetricDimensions.t option;
    (*

    Describes the dimensions of the metric.

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

    The name of the metric.

    *)
  3. namespace : PredictiveScalingMetricNamespace.t option;
    (*

    The namespace of the metric.

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