Module Values.CloudWatchAlarmConfigurationSource

A complex type that contains information about the CloudWatch alarm that Amazon Route 53 is monitoring for this health check.

Sourcetype nonrec t = {
  1. evaluationPeriods : EvaluationPeriods.t option;
    (*

    For the metric that the CloudWatch alarm is associated with, the number of periods that the metric is compared to the threshold.

    *)
  2. threshold : Threshold.t option;
    (*

    For the metric that the CloudWatch alarm is associated with, the value the metric is compared with.

    *)
  3. comparisonOperator : ComparisonOperator.t option;
    (*

    For the metric that the CloudWatch alarm is associated with, the arithmetic operation that is used for the comparison.

    *)
  4. period : Period.t option;
    (*

    For the metric that the CloudWatch alarm is associated with, the duration of one evaluation period in seconds.

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

    The name of the CloudWatch metric that the alarm is associated with.

    *)
  6. namespace : Namespace.t option;
    (*

    The namespace of the metric that the alarm is associated with. For more information, see Amazon CloudWatch Namespaces, Dimensions, and Metrics Reference in the Amazon CloudWatch User Guide.

    *)
  7. statistic : Statistic.t option;
    (*

    For the metric that the CloudWatch alarm is associated with, the statistic that is applied to the metric.

    *)
  8. dimensions : DimensionList.t option;
    (*

    For the metric that the CloudWatch alarm is associated with, a complex type that contains information about the dimensions for the metric. For information, see Amazon CloudWatch Namespaces, Dimensions, and Metrics Reference in the Amazon CloudWatch User Guide.

    *)
}
Sourceval make : ?evaluationPeriods:??? -> ?threshold:??? -> ?comparisonOperator:??? -> ?period:??? -> ?metricName:??? -> ?namespace:??? -> ?statistic:??? -> ?dimensions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Threshold.t | `Enum of string | `Integer of EvaluationPeriods.t | `List of [> `Structure of (string * [> `String of DimensionField.t ]) list ] list | `String of MetricName.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