Module Values.EventBusSource

An event bus receives events from a source, uses rules to evaluate them, applies any configured input transformation, and routes them to the appropriate target(s). Your account's default event bus receives events from Amazon Web Services services. A custom event bus can receive events from your custom applications and services. A partner event bus receives events from an event source created by an SaaS partner. These events come from the partners services or applications.

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

    The name of the event bus.

    *)
  2. arn : String_.t option;
    (*

    The ARN of the event bus.

    *)
  3. description : EventBusDescription.t option;
    (*

    The event bus description.

    *)
  4. policy : String_.t option;
    (*

    The permissions policy of the event bus, describing which other Amazon Web Services accounts can write events to this event bus.

    *)
  5. creationTime : Timestamp.t option;
    (*

    The time the event bus was created.

    *)
  6. lastModifiedTime : Timestamp.t option;
    (*

    The time the event bus was last modified.

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