Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PipeEnrichmentParameters

import type { PipeEnrichmentParameters } from "https://aws-api.deno.dev/v0.4/services/pipes.ts?docs=full";

The parameters required to set up enrichment on your pipe.

interface PipeEnrichmentParameters {
HttpParameters?: PipeEnrichmentHttpParameters | null;
InputTemplate?: string | null;
}

§Properties

§
HttpParameters?: PipeEnrichmentHttpParameters | null
[src]

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.

§
InputTemplate?: string | null
[src]

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.