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