Updates a Function object.
Function
Use a bare-bones client and the command you need to make an API call.
import { AppSyncClient, UpdateFunctionCommand } from "@aws-sdk/client-appsync"; // ES Modules import // const { AppSyncClient, UpdateFunctionCommand } = require("@aws-sdk/client-appsync"); // CommonJS import const client = new AppSyncClient(config); const command = new UpdateFunctionCommand(input); const response = await client.send(command);
UpdateFunctionCommandInput for command's input shape.
input
UpdateFunctionCommandOutput for command's response shape.
response
config for AppSyncClient's config shape.
config
Updates a
Function
object.Use a bare-bones client and the command you need to make an API call.
import { AppSyncClient, UpdateFunctionCommand } from "@aws-sdk/client-appsync"; // ES Modules import // const { AppSyncClient, UpdateFunctionCommand } = require("@aws-sdk/client-appsync"); // CommonJS import const client = new AppSyncClient(config); const command = new UpdateFunctionCommand(input); const response = await client.send(command);
UpdateFunctionCommandInput for command's
input
shape.UpdateFunctionCommandOutput for command's
response
shape.config for AppSyncClient's
config
shape.