Learn R Programming

paws.customer.engagement (version 0.1.12)

ses_set_receipt_rule_position: 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)

Value

An empty list.

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.

Request syntax

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

Examples

Run this code
if (FALSE) {
# 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"
)
}

Run the code above in your browser using DataLab