Module Values.EventIntegrationSource

The event integration.

Sourcetype nonrec t = {
  1. eventIntegrationArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the event integration.

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

    The name of the event integration.

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

    The event integration description.

    *)
  4. eventFilter : EventFilter.t option;
    (*

    The event integration filter.

    *)
  5. eventBridgeBus : EventBridgeBus.t option;
    (*

    The Amazon EventBridge bus for the event integration.

    *)
  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 make : ?eventIntegrationArn:??? -> ?name:??? -> ?description:??? -> ?eventFilter:??? -> ?eventBridgeBus:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Arn.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