Values.EventBusSourceAn 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.
type nonrec t = {name : String_.t option;The name of the event bus.
*)arn : String_.t option;The ARN of the event bus.
*)description : EventBusDescription.t option;The event bus description.
*)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.
*)creationTime : Timestamp.t option;The time the event bus was created.
*)lastModifiedTime : Timestamp.t option;The time the event bus was last modified.
*)}val to_value :
t ->
[> `Structure of
(string * [> `String of String_.t | `Timestamp of Timestamp.t ]) list ]