Module Values_0.AlarmConfigurationSource

The details for the CloudWatch alarm you want to apply to an automation or command.

Sourcetype nonrec t = {
  1. ignorePollAlarmFailure : Boolean.t option;
    (*

    When this value is true, your automation or command continues to run in cases where we canโ€™t retrieve alarm status information from CloudWatch. In cases where we successfully retrieve an alarm status of OK or INSUFFICIENT_DATA, the automation or command continues to run, regardless of this value. Default is false.

    *)
  2. alarms : AlarmList.t;
    (*

    The name of the CloudWatch alarm specified in the configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?ignorePollAlarmFailure:??? -> alarms:AlarmList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `String of AlarmName.t ]) 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