Permanently deletes the specified Contributor Insights rules.
If you create a rule, delete it, and then re-create it with the same name, historical data from the first time
the rule was created might
not be available.
example
Use a bare-bones client and the command you need to make an API call.
Permanently deletes the specified Contributor Insights rules.
If you create a rule, delete it, and then re-create it with the same name, historical data from the first time the rule was created might not be available.
Use a bare-bones client and the command you need to make an API call.
import { CloudWatchClient, DeleteInsightRulesCommand } from "@aws-sdk/client-cloudwatch"; // ES Modules import // const { CloudWatchClient, DeleteInsightRulesCommand } = require("@aws-sdk/client-cloudwatch"); // CommonJS import const client = new CloudWatchClient(config); const command = new DeleteInsightRulesCommand(input); const response = await client.send(command);
DeleteInsightRulesCommandInput for command's
input
shape.DeleteInsightRulesCommandOutput for command's
response
shape.config for CloudWatchClient's
config
shape.