Module Values.EventResourceSource

The Amazon Web Services resource that emitted an 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. type_ : EventResourceType.t option;
    (*

    The type of resource that emitted an event.

    *)
  2. name : EventResourceName.t option;
    (*

    The name of the resource that emitted an event.

    *)
  3. arn : EventResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the resource that emitted an event.

    *)
}
Sourceval make : ?type_:??? -> ?name:??? -> ?arn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EventResourceType.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