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

ImportApiKeysRequest

import type { ImportApiKeysRequest } from "https://aws-api.deno.dev/v0.3/services/apigateway.ts?docs=full";

The POST request to import API keys from an external source, such as a CSV-formatted file.

interface ImportApiKeysRequest {
body: Uint8Array | string;
failOnWarnings?: boolean | null;
format: ApiKeysFormat;
}

§Properties

§
body: Uint8Array | string
[src]

The payload of the POST request to import API keys. For the payload format, see API Key File Format.

§
failOnWarnings?: boolean | null
[src]

A query parameter to indicate whether to rollback "ApiKey" importation (true) or not (false) when error is encountered.

§

A query parameter to specify the input format to imported API keys. Currently, only the csv format is supported.