Module Values.AwsEventsEventbusDetailsSource

Provides details about Amazon EventBridge event bus. An event bus is a router that receives events and delivers them to zero or more destinations, or targets. This can be a custom event bus which you can use to receive events from your custom applications and services, or it can be a partner event bus which can be matched to a partner event source.

Sourcetype nonrec t = {
  1. arn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the account permitted to write events to the current account.

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

    The name of the event bus.

    *)
  3. policy : NonEmptyString.t option;
    (*

    The policy that enables the external account to send events to your account.

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