Module Values.EventDetailsSource

Detailed information about an event. A combination of an Event object, an EventDescription object, and additional metadata about the event. Returned by the DescribeEventDetails operation.

Sourcetype nonrec t = {
  1. event : Event.t option;
    (*

    Summary information about the event.

    *)
  2. eventDescription__lc1 : EventDescription.t option;
    (*

    The most recent description of the event.

    *)
  3. eventMetadata : EventMetadata.t option;
    (*

    Additional metadata about the event.

    *)
}
Sourceval make : ?event:??? -> ?eventDescription__lc1:??? -> ?eventMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of MetadataKey.t ] * [> `String of MetadataValue.t ]) list | `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of EventArn.t | `Timestamp of Timestamp.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