aws-ses:tldr:ed567
This command is used to delete a receipt rule from an Amazon Simple Email Service (SES) rule set.
Here is an explanation of the parameters used in the command:
-
delete-receipt-rule
: This part of the command tells AWS CLI that we want to delete a receipt rule. -
--rule-set-name ${rule_set_name}
: This parameter specifies the name of the rule set from which the rule is to be deleted. The${rule_set_name}
is a placeholder, and you need to replace it with the actual name of the rule set. -
--rule-name ${rule_name}
: This parameter specifies the name of the rule that is to be deleted. The${rule_name}
is a placeholder, and you need to replace it with the actual name of the rule. -
--generate-cli-skeleton
: This option generates a JSON skeleton for the command. It provides a template that you can use to provide values for various parameters in the command. It helps in giving a structure for the command without actually executing it.
By running this command with the appropriate values for rule_set_name
and rule_name
, you can delete a specific receipt rule from your SES rule set.