Deletes a suggester. For more information, see Getting Search Suggestions in the Amazon CloudSearch Developer Guide.
Use a bare-bones client and the command you need to make an API call.
import { CloudSearchClient, DeleteSuggesterCommand } from "@aws-sdk/client-cloudsearch"; // ES Modules import // const { CloudSearchClient, DeleteSuggesterCommand } = require("@aws-sdk/client-cloudsearch"); // CommonJS import const client = new CloudSearchClient(config); const command = new DeleteSuggesterCommand(input); const response = await client.send(command);
DeleteSuggesterCommandInput for command's input shape.
input
DeleteSuggesterCommandOutput for command's response shape.
response
config for CloudSearchClient's config shape.
config
Deletes a suggester. For more information, see Getting Search Suggestions in the Amazon CloudSearch Developer Guide.
Use a bare-bones client and the command you need to make an API call.
import { CloudSearchClient, DeleteSuggesterCommand } from "@aws-sdk/client-cloudsearch"; // ES Modules import // const { CloudSearchClient, DeleteSuggesterCommand } = require("@aws-sdk/client-cloudsearch"); // CommonJS import const client = new CloudSearchClient(config); const command = new DeleteSuggesterCommand(input); const response = await client.send(command);
DeleteSuggesterCommandInput for command's
input
shape.DeleteSuggesterCommandOutput for command's
response
shape.config for CloudSearchClient's
config
shape.