Module Values.CloudWatchMetricsDimensionSource

The dimension of an Amazon CloudWatch metric that is used when DevOps Guru analyzes the resources in your account for operational problems and anomalous behavior. A dimension is a name/value pair that is part of the identity of a metric. A metric can have up to 10 dimensions. For more information, see Dimensions in the Amazon CloudWatch User Guide.

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

    The name of the CloudWatch dimension.

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

    The value of the CloudWatch dimension.

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