Module Values.PipeEnrichmentParametersSource

The parameters required to set up enrichment on your pipe.

Sourcetype nonrec t = {
  1. inputTemplate : InputTemplate.t option;
    (*

    Valid JSON text passed to the enrichment. In this case, nothing from the event itself is passed to the enrichment. For more information, see The JavaScript Object Notation (JSON) Data Interchange Format. To remove an input template, specify an empty string.

    *)
  2. httpParameters : PipeEnrichmentHttpParameters.t option;
    (*

    Contains the HTTP parameters to use when the target is a API Gateway REST endpoint or EventBridge ApiDestination. If you specify an API Gateway REST API or EventBridge ApiDestination as a target, you can use this parameter to specify headers, path parameters, and query string keys/values as part of your target invoking request. If you're using ApiDestinations, the corresponding Connection can also have these values configured. In case of any conflicting keys, values from the Connection take precedence.

    *)
}
Sourceval make : ?inputTemplate:??? -> ?httpParameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of InputTemplate.t | `Structure of (string * [> `List of [> `String of PathParameter.t ] list | `Map of ([> `String of HeaderKey.t ] * [> `String of HeaderValue.t ]) list ]) 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