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

SdkResponse

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

The binary blob response to GetSdk, which contains the generated SDK.

interface SdkResponse {
body?: Uint8Array | null;
contentDisposition?: string | null;
contentType?: string | null;
}

§Properties

§
body?: Uint8Array | null
[src]

The binary blob response to GetSdk, which contains the generated SDK.

§
contentDisposition?: string | null
[src]

The content-disposition header value in the HTTP response.

§
contentType?: string | null
[src]

The content-type header value in the HTTP response.