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

UpdateMethodResponseRequest

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

A request to update an existing "MethodResponse" resource.

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

§Properties

§
httpMethod: string
[src]

[Required] The HTTP verb of the "Method" resource.

§
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] The "Resource" identifier for the "MethodResponse" resource.

§
restApiId: string
[src]

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

§
statusCode: string
[src]

[Required] The status code for the "MethodResponse" resource.