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

PipeEnrichmentHttpParameters

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

These are custom parameter to be used when the target is an API Gateway REST APIs or EventBridge ApiDestinations. In the latter case, these are merged with any InvocationParameters specified on the Connection, with any values from the Connection taking precedence.

interface PipeEnrichmentHttpParameters {
HeaderParameters?: {
[key: string]: string | null | undefined;
}
| null;
PathParameterValues?: string[] | null;
QueryStringParameters?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
HeaderParameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

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

§
PathParameterValues?: string[] | null
[src]

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

§
QueryStringParameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

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