Removes an Expression from the search domain. For more information, see Configuring Expressions in the Amazon CloudSearch Developer Guide.
Expression
Use a bare-bones client and the command you need to make an API call.
import { CloudSearchClient, DeleteExpressionCommand } from "@aws-sdk/client-cloudsearch"; // ES Modules import // const { CloudSearchClient, DeleteExpressionCommand } = require("@aws-sdk/client-cloudsearch"); // CommonJS import const client = new CloudSearchClient(config); const command = new DeleteExpressionCommand(input); const response = await client.send(command);
DeleteExpressionCommandInput for command's input shape.
input
DeleteExpressionCommandOutput for command's response shape.
response
config for CloudSearchClient's config shape.
config
Removes an
Expression
from the search domain. For more information, see Configuring Expressions in the Amazon CloudSearch Developer Guide.Use a bare-bones client and the command you need to make an API call.
import { CloudSearchClient, DeleteExpressionCommand } from "@aws-sdk/client-cloudsearch"; // ES Modules import // const { CloudSearchClient, DeleteExpressionCommand } = require("@aws-sdk/client-cloudsearch"); // CommonJS import const client = new CloudSearchClient(config); const command = new DeleteExpressionCommand(input); const response = await client.send(command);
DeleteExpressionCommandInput for command's
input
shape.DeleteExpressionCommandOutput for command's
response
shape.config for CloudSearchClient's
config
shape.