Module Values.AlarmHistoryItemSource

Represents the history of a specific alarm.

Sourcetype nonrec t = {
  1. alarmName : AlarmName.t option;
    (*

    The descriptive name for the alarm.

    *)
  2. alarmContributorId : ContributorId.t option;
    (*

    The unique identifier of the alarm contributor associated with this history item, if applicable.

    *)
  3. alarmType : AlarmType.t option;
    (*

    The type of alarm, either metric alarm or composite alarm.

    *)
  4. timestamp : Timestamp.t option;
    (*

    The time stamp for the alarm history item.

    *)
  5. historyItemType : HistoryItemType.t option;
    (*

    The type of alarm history item.

    *)
  6. historySummary : HistorySummary.t option;
    (*

    A summary of the alarm history, in text format.

    *)
  7. historyData : HistoryData.t option;
    (*

    Data about the alarm, in JSON format.

    *)
  8. alarmContributorAttributes : ContributorAttributes.t option;
    (*

    A map of attributes that describe the alarm contributor associated with this history item, providing context about the contributor's characteristics at the time of the event.

    *)
}
Sourceval make : ?alarmName:??? -> ?alarmContributorId:??? -> ?alarmType:??? -> ?timestamp:??? -> ?historyItemType:??? -> ?historySummary:??? -> ?historyData:??? -> ?alarmContributorAttributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of AttributeName.t ] * [> `String of AttributeValue.t ]) list | `String of AlarmName.t | `Timestamp of Timestamp.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