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