Module Values.CloudWatchMetricsDetailSource

Information about an Amazon CloudWatch metric.

Sourcetype nonrec t = {
  1. metricName : CloudWatchMetricsMetricName.t option;
    (*

    The name of the CloudWatch metric.

    *)
  2. namespace : CloudWatchMetricsNamespace.t option;
    (*

    The namespace of the CloudWatch metric. A namespace is a container for CloudWatch metrics.

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

    An array of CloudWatch dimensions associated with

    *)
  4. stat : CloudWatchMetricsStat.t option;
    (*

    The type of statistic associated with the CloudWatch metric. For more information, see Statistics in the Amazon CloudWatch User Guide.

    *)
  5. unit : CloudWatchMetricsUnit.t option;
    (*

    The unit of measure used for the CloudWatch metric. For example, Bytes, Seconds, Count, and Percent.

    *)
  6. period : CloudWatchMetricsPeriod.t option;
    (*

    The length of time associated with the CloudWatch metric in number of seconds.

    *)
  7. metricDataSummary : CloudWatchMetricsDataSummary.t option;
    (*

    This object returns anomaly metric data.

    *)
}
Sourceval make : ?metricName:??? -> ?namespace:??? -> ?dimensions:??? -> ?stat:??? -> ?unit:??? -> ?period:??? -> ?metricDataSummary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of CloudWatchMetricsPeriod.t | `List of [> `Structure of (string * [> `String of CloudWatchMetricsDimensionName.t ]) list ] list | `String of CloudWatchMetricsMetricName.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Double of MetricValue.t | `Timestamp of Timestamp.t ]) list ] list ]) list ]) 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