Module Values.ServiceStateSource

A structure that contains information about the current state of a service, including its latest change events such as deployments and other state-changing activities.

Sourcetype nonrec t = {
  1. attributeFilters : AttributeFilters.t option;
    (*

    The attribute filters that were applied when retrieving this service state information.

    *)
  2. service : Attributes.t option;
    (*

    The key attributes that identify this service, including Type, Name, and Environment information.

    *)
  3. latestChangeEvents : LatestChangeEvents.t option;
    (*

    An array containing the most recent change events for this service, such as deployments, with information about when they occurred and who initiated them.

    *)
}
Sourceval make : ?attributeFilters:??? -> ?service:??? -> ?latestChangeEvents:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of AttributeFilterValue.t ] list | `Map of ([> `String of KeyAttributeName.t ] * [> `String of KeyAttributeValue.t ]) list | `String of AttributeFilterName.t | `Timestamp of Timestamp.t ]) list ] list | `Map of ([> `String of KeyAttributeName.t ] * [> `String of KeyAttributeValue.t ]) list ]) 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