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

PipeTargetHttpParameters

import type { PipeTargetHttpParameters } 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.

interface PipeTargetHttpParameters {
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.