Skip to content

Set Receipt Rule Position

ses_set_receipt_rule_position R Documentation

Sets the position of the specified receipt rule in the receipt rule set

Description

Sets the position of the specified receipt rule in the receipt rule set.

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_set_receipt_rule_position(RuleSetName, RuleName, After)

Arguments

RuleSetName

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

RuleName

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

After

The name of the receipt rule after which to place the specified receipt rule.

Value

An empty list.

Request syntax

svc$set_receipt_rule_position(
  RuleSetName = "string",
  RuleName = "string",
  After = "string"
)

Examples

## Not run: 
# The following example sets the position of a receipt rule in a receipt
# rule set:
svc$set_receipt_rule_position(
  After = "PutRuleAfterThisRule",
  RuleName = "RuleToReposition",
  RuleSetName = "MyRuleSet"
)

## End(Not run)