Module Values.TargetTrackingMetricSource

Represents a specific metric. Metric is a property of the TargetTrackingMetricStat object.

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

    The dimensions for the metric. For the list of available dimensions, see the Amazon Web Services documentation available from the table in Amazon Web Services services that publish CloudWatch metrics in the Amazon CloudWatch User Guide. Conditional: If you published your metric with dimensions, you must specify the same dimensions in your scaling policy.

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

    The name of the metric.

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

    The namespace of the metric. For more information, see the table in Amazon Web Services services that publish CloudWatch metrics in the Amazon CloudWatch User Guide.

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