Module Values.PipeTargetEventBridgeEventBusParametersSource

The parameters for using an EventBridge event bus as a target.

Sourcetype nonrec t = {
  1. endpointId : EventBridgeEndpointId.t option;
    (*

    The URL subdomain of the endpoint. For example, if the URL for Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then the EndpointId is abcde.veo.

    *)
  2. detailType : EventBridgeDetailType.t option;
    (*

    A free-form string, with a maximum of 128 characters, used to decide what fields to expect in the event detail.

    *)
  3. source : EventBridgeEventSource.t option;
    (*

    The source of the event.

    *)
  4. resources : EventBridgeEventResourceList.t option;
    (*

    Amazon Web Services resources, identified by Amazon Resource Name (ARN), which the event primarily concerns. Any number, including zero, may be present.

    *)
  5. time : JsonPath.t option;
    (*

    The time stamp of the event, per RFC3339. If no time stamp is provided, the time stamp of the PutEvents call is used.

    *)
}
Sourceval make : ?endpointId:??? -> ?detailType:??? -> ?source:??? -> ?resources:??? -> ?time:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ArnOrJsonPath.t ] list | `String of EventBridgeEndpointId.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