Module Values.CreateEventIntegrationRequestSource

Creates 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.

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

    The name of the event integration.

    *)
  2. description : Description.t option;
    (*

    The description of the event integration.

    *)
  3. eventFilter : EventFilter.t;
    (*

    The event filter.

    *)
  4. eventBridgeBus : EventBridgeBus.t;
    (*

    The EventBridge bus.

    *)
  5. 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.

    *)
  6. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?clientToken:??? -> ?tags:??? -> name:Name.t -> eventFilter:EventFilter.t -> eventBridgeBus:EventBridgeBus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.t | `Structure of (string * [> `String of Source.t ]) list ]) 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