Module Values.ResetAlarmActionRequestSource

Information needed to reset the alarm.

Sourcetype nonrec t = {
  1. requestId : RequestId.t;
    (*

    The request ID. Each ID must be unique within each batch.

    *)
  2. alarmModelName : AlarmModelName.t;
    (*

    The name of the alarm model.

    *)
  3. keyValue : KeyValue.t option;
    (*

    The value of the key used as a filter to select only the alarms associated with the key.

    *)
  4. note : Note.t option;
    (*

    The note that you can leave when you reset the alarm.

    *)
}
Sourceval context_ : string
Sourceval make : ?keyValue:??? -> ?note:??? -> requestId:RequestId.t -> alarmModelName:AlarmModelName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RequestId.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