Skip to content

Delete Receipt Rule

ses_delete_receipt_rule R Documentation

Deletes the specified receipt rule

Description

Deletes the specified receipt rule.

For information about managing receipt rules, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

Usage

ses_delete_receipt_rule(RuleSetName, RuleName)

Arguments

RuleSetName

[required] The name of the receipt rule set that contains the receipt rule to delete.

RuleName

[required] The name of the receipt rule to delete.

Value

An empty list.

Request syntax

svc$delete_receipt_rule(
  RuleSetName = "string",
  RuleName = "string"
)

Examples

## Not run: 
# The following example deletes a receipt rule:
svc$delete_receipt_rule(
  RuleName = "MyRule",
  RuleSetName = "MyRuleSet"
)

## End(Not run)