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

GetSdkRequest

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

Request a new generated client SDK for a RestApi and Stage.

interface GetSdkRequest {
parameters?: {
[key: string]: string | null | undefined;
}
| null;
restApiId: string;
sdkType: string;
stageName: string;
}

§Properties

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

A string-to-string key-value map of query parameters sdkType-dependent properties of the SDK. For sdkType of objectivec or swift, a parameter named classPrefix is required. For sdkType of android, parameters named groupId, artifactId, artifactVersion, and invokerPackage are required. For sdkType of java, parameters named serviceName and javaPackageName are required.

§
restApiId: string
[src]

The string identifier of the associated RestApi.

§
sdkType: string
[src]

The language for the generated SDK. Currently java, javascript, android, objectivec (for iOS), swift (for iOS), and ruby are supported.

§
stageName: string
[src]

The name of the Stage that the SDK will use.