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

UpdateIntegrationRequest

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

Represents an update integration request.

interface UpdateIntegrationRequest {
httpMethod: string;
patchOperations?: PatchOperation[] | null;
resourceId: string;
restApiId: string;
}

§Properties

§
httpMethod: string
[src]

[Required] Represents an update integration request's HTTP method.

§
patchOperations?: PatchOperation[] | null
[src]

A list of update operations to be applied to the specified resource and in the order specified in this list.

§
resourceId: string
[src]

[Required] Represents an update integration request's resource identifier.

§
restApiId: string
[src]

[Required] The string identifier of the associated "RestApi".