Module Values.EventSource

This data type is used as a response element in the DescribeEvents action.

Sourcetype nonrec t = {
  1. sourceIdentifier : String_.t option;
    (*

    Provides the identifier for the source of the event.

    *)
  2. sourceType : SourceType.t option;
    (*

    Specifies the source type for this event.

    *)
  3. message : String_.t option;
    (*

    Provides the text of this event.

    *)
  4. eventCategories : EventCategoriesList.t option;
    (*

    Specifies the category for the event.

    *)
  5. date : TStamp.t option;
    (*

    Specifies the date and time of the event.

    *)
  6. sourceArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for the event.

    *)
}
Sourceval make : ?sourceIdentifier:??? -> ?sourceType:??? -> ?message:??? -> ?eventCategories:??? -> ?date:??? -> ?sourceArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Timestamp of TStamp.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