Module Values.DimensionSource

For the metric that the CloudWatch alarm is associated with, a complex type that contains information about one dimension.

Sourcetype nonrec t = {
  1. name : DimensionField.t option;
    (*

    For the metric that the CloudWatch alarm is associated with, the name of one dimension.

    *)
  2. value : DimensionField.t option;
    (*

    For the metric that the CloudWatch alarm is associated with, the value of one dimension.

    *)
}
Sourceval make : ?name:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DimensionField.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