Module Values.UpdateCloudWatchAlarmTemplateRequestSource

Placeholder documentation for UpdateCloudWatchAlarmTemplateRequest

Sourcetype nonrec t = {
  1. comparisonOperator : CloudWatchAlarmTemplateComparisonOperator.t option;
  2. datapointsToAlarm : int option;
    (*

    The number of datapoints within the evaluation period that must be breaching to trigger the alarm.

    *)
  3. description : string option;
    (*

    A resource's optional description.

    *)
  4. evaluationPeriods : int option;
    (*

    The number of periods over which data is compared to the specified threshold.

    *)
  5. groupIdentifier : string option;
    (*

    A cloudwatch alarm template group's identifier. Can be either be its id or current name.

    *)
  6. identifier : string;
    (*

    A cloudwatch alarm template's identifier. Can be either be its id or current name.

    *)
  7. metricName : string option;
    (*

    The name of the metric associated with the alarm. Must be compatible with targetResourceType.

    *)
  8. name : string option;
    (*

    A resource's name. Names must be unique within the scope of a resource type in a specific region.

    *)
  9. period : int option;
    (*

    The period, in seconds, over which the specified statistic is applied.

    *)
  10. statistic : CloudWatchAlarmTemplateStatistic.t option;
  11. targetResourceType : CloudWatchAlarmTemplateTargetResourceType.t option;
  12. threshold : float option;
    (*

    The threshold value to compare with the specified statistic.

    *)
  13. treatMissingData : CloudWatchAlarmTemplateTreatMissingData.t option;
}
Sourceval context_ : string
Sourceval make : ?comparisonOperator:??? -> ?datapointsToAlarm:??? -> ?description:??? -> ?evaluationPeriods:??? -> ?groupIdentifier:??? -> ?metricName:??? -> ?name:??? -> ?period:??? -> ?statistic:??? -> ?targetResourceType:??? -> ?threshold:??? -> ?treatMissingData:??? -> identifier:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `String of string ]) 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