Module Values.ResponseResourceMetricSource

An object that contains the full name, description, and unit of a metric.

Sourcetype nonrec t = {
  1. metric : String_.t option;
    (*

    The full name of the metric.

    *)
  2. description : Description.t option;
    (*

    The description of the metric.

    *)
  3. unit : String_.t option;
    (*

    The unit of the metric.

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