Values.CreateEventIntegrationRequestSourceCreates an EventIntegration, given a specified name, description, and a reference to an Amazon EventBridge bus in your account and a partner event source that pushes events to that bus. No objects are created in the your account, only metadata that is persisted on the EventIntegration control plane.
type nonrec t = {name : Name.t;The name of the event integration.
*)description : Description.t option;The description of the event integration.
*)eventFilter : EventFilter.t;The event filter.
*)eventBridgeBus : EventBridgeBus.t;The EventBridge bus.
*)clientToken : IdempotencyToken.t option;A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
*)}val make :
?description:??? ->
?clientToken:??? ->
?tags:??? ->
name:Name.t ->
eventFilter:EventFilter.t ->
eventBridgeBus:EventBridgeBus.t ->
unit ->
t