package aws-cloudwatch

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. actions_enabled : Aws.BaseTypes.Boolean.t option;
  2. alarm_actions : ResourceList.t;
  3. alarm_description : Aws.BaseTypes.String.t option;
  4. alarm_name : Aws.BaseTypes.String.t;
  5. alarm_rule : Aws.BaseTypes.String.t;
  6. insufficient_data_actions : ResourceList.t;
  7. o_k_actions : ResourceList.t;
  8. tags : TagList.t;
}
val make : ?actions_enabled:Aws.BaseTypes.Boolean.t -> ?alarm_actions:ResourceList.t -> ?alarm_description:Aws.BaseTypes.String.t -> alarm_name:Aws.BaseTypes.String.t -> alarm_rule:Aws.BaseTypes.String.t -> ?insufficient_data_actions:ResourceList.t -> ?o_k_actions:ResourceList.t -> ?tags:TagList.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t