Module Values.PipeTargetHttpParametersSource

These are custom parameter to be used when the target is an API Gateway REST APIs or EventBridge ApiDestinations.

Sourcetype nonrec t = {
  1. pathParameterValues : PathParameterList.t option;
    (*

    The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").

    *)
  2. headerParameters : HeaderParametersMap.t option;
    (*

    The headers that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.

    *)
  3. queryStringParameters : QueryStringParametersMap.t option;
    (*

    The query string keys/values that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.

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