Module Values.EventSource

An Amazon Web Services resource event. Amazon Web Services resource events and metrics are analyzed by DevOps Guru to find anomalous behavior and provide recommendations to improve your operational solutions.

Sourcetype nonrec t = {
  1. resourceCollection : ResourceCollection.t option;
  2. id : EventId.t option;
    (*

    The ID of the event.

    *)
  3. time : Timestamp.t option;
    (*

    A Timestamp that specifies the time the event occurred.

    *)
  4. eventSource : EventSource.t option;
    (*

    The Amazon Web Services source that emitted the event.

    *)
  5. name : EventName.t option;
    (*

    The name of the event.

    *)
  6. dataSource : EventDataSource.t option;
    (*

    The source, AWS_CLOUD_TRAIL or AWS_CODE_DEPLOY, where DevOps Guru analysis found the event.

    *)
  7. eventClass : EventClass.t option;
    (*

    The class of the event. The class specifies what the event is related to, such as an infrastructure change, a deployment, or a schema change.

    *)
  8. resources : EventResources.t option;
    (*

    An EventResource object that contains information about the resource that emitted the event.

    *)
}
Sourceval make : ?resourceCollection:??? -> ?id:??? -> ?time:??? -> ?eventSource:??? -> ?name:??? -> ?dataSource:??? -> ?eventClass:??? -> ?resources:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of EventResourceType.t ]) list ] list | `String of EventId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of TagValue.t ] list | `String of AppBoundaryKey.t ]) list ] list | `Structure of (string * [> `List of [> `String of StackName.t ] list ]) list ]) list | `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