Module Values.AlarmContributorSource

Represents an individual contributor to a multi-timeseries alarm, containing information about a specific time series and its contribution to the alarm's state.

Sourcetype nonrec t = {
  1. contributorId : ContributorId.t option;
    (*

    The unique identifier for this alarm contributor.

    *)
  2. contributorAttributes : ContributorAttributes.t option;
    (*

    A map of attributes that describe the contributor, such as metric dimensions and other identifying characteristics.

    *)
  3. stateReason : StateReason.t option;
    (*

    An explanation for the contributor's current state, providing context about why it is in its current condition.

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

    The timestamp when the contributor last transitioned to its current state.

    *)
}
Sourceval make : ?contributorId:??? -> ?contributorAttributes:??? -> ?stateReason:??? -> ?stateTransitionedTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of AttributeName.t ] * [> `String of AttributeValue.t ]) list | `String of ContributorId.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