Skip to content

Reorder Receipt Rule Set

ses_reorder_receipt_rule_set R Documentation

Reorders the receipt rules within a receipt rule set

Description

Reorders the receipt rules within a receipt rule set.

All of the rules in the rule set must be represented in this request. That is, it is error if the reorder request doesn't explicitly position all of the rules.

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

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

Usage

ses_reorder_receipt_rule_set(RuleSetName, RuleNames)

Arguments

RuleSetName

[required] The name of the receipt rule set to reorder.

RuleNames

[required] The specified receipt rule set's receipt rules, in order.

Value

An empty list.

Request syntax

svc$reorder_receipt_rule_set(
  RuleSetName = "string",
  RuleNames = list(
    "string"
  )
)

Examples

## Not run: 
# The following example reorders the receipt rules within a receipt rule
# set:
svc$reorder_receipt_rule_set(
  RuleNames = list(
    "MyRule",
    "MyOtherRule"
  ),
  RuleSetName = "MyRuleSet"
)

## End(Not run)