Module Values.MetricReferenceSource

This structure contains information about one CloudWatch metric associated with this entity discovered by Application Signals.

Sourcetype nonrec t = {
  1. namespace : Namespace.t option;
    (*

    The namespace of the metric. For more information, see CloudWatchNamespaces.

    *)
  2. metricType : MetricType.t option;
    (*

    Used to display the appropriate statistics in the CloudWatch console.

    *)
  3. dimensions : Dimensions.t option;
    (*

    An array of one or more dimensions that further define the metric. For more information, see CloudWatchDimensions.

    *)
  4. metricName : MetricName.t option;
    (*

    The name of the metric.

    *)
  5. accountId : AwsAccountId.t option;
    (*

    Amazon Web Services account ID.

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