Module Values.AlarmConfigurationSource

Information about alarms associated with a deployment or deployment group.

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

    Indicates whether the alarm configuration is enabled.

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

    Indicates whether a deployment should continue if information about the current state of alarms cannot be retrieved from Amazon CloudWatch. The default value is false. true: The deployment proceeds even if alarm status information can't be retrieved from Amazon CloudWatch. false: The deployment stops if alarm status information can't be retrieved from Amazon CloudWatch.

    *)
  3. alarms : AlarmList.t option;
    (*

    A list of alarms configured for the deployment or deployment group. A maximum of 10 alarms can be added.

    *)
}
Sourceval make : ?enabled:??? -> ?ignorePollAlarmFailure:??? -> ?alarms:??? -> 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