Values.AlarmContributorSourceRepresents an individual contributor to a multi-timeseries alarm, containing information about a specific time series and its contribution to the alarm's state.
type nonrec t = {contributorId : ContributorId.t option;The unique identifier for this alarm contributor.
*)contributorAttributes : ContributorAttributes.t option;A map of attributes that describe the contributor, such as metric dimensions and other identifying characteristics.
*)stateReason : StateReason.t option;An explanation for the contributor's current state, providing context about why it is in its current condition.
*)stateTransitionedTimestamp : Timestamp.t option;The timestamp when the contributor last transitioned to its current state.
*)}val 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 ]