Module Values.DaemonAlarmConfigurationSource

The CloudWatch alarm configuration for a daemon. When enabled, CloudWatch alarms determine whether a daemon deployment has failed.

Sourcetype nonrec t = {
  1. alarmNames : StringList.t option;
    (*

    The CloudWatch alarm names to monitor during a daemon deployment.

    *)
  2. enable : Boolean.t option;
    (*

    Determines whether to use the CloudWatch alarm option in the daemon deployment process. The default value is false.

    *)
}
Sourceval make : ?alarmNames:??? -> ?enable:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] 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