Skip to main content
Module

x/aws_api/client/common.ts>ApiRequestConfig

From-scratch Typescript client for accessing AWS APIs
Extremely Popular
Latest
interface ApiRequestConfig
import { type ApiRequestConfig } from "https://deno.land/x/aws_api@v0.8.1/client/common.ts";

The HTTP contract expected by all service API implementations

Properties

action: string
optional
method:
| "POST"
| "GET"
| "HEAD"
| "DELETE"
| "PUT"
| "PATCH"
optional
requestUri: string
optional
responseCode: number
optional
hostPrefix: string
optional
region: string
optional
headers: Headers
optional
query: URLSearchParams
optional
body:
| Uint8Array
| string
| null
optional
deprecated
skipSigning: true
optional
authType: "anonymous" | "unsigned-payload"
optional
opts: RequestOptions