paws.customer.engagement (version 0.1.0)

ses_reorder_receipt_rule_set: Reorders the receipt rules within a receipt rule set

Description

Reorders the receipt rules within a receipt rule set.

Usage

ses_reorder_receipt_rule_set(RuleSetName, RuleNames)

Arguments

RuleSetName

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

RuleNames

[required] A list of the specified receipt rule set's receipt rules in the order that you want to put them.

Request syntax

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

Details

All of the rules in the rule set must be represented in this request. That is, this API will return an 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.

Examples

Run this code
# NOT RUN {
# The following example reorders the receipt rules within a receipt rule
# set:
# }
# NOT RUN {
svc$reorder_receipt_rule_set(
  RuleNames = list(
    "MyRule",
    "MyOtherRule"
  ),
  RuleSetName = "MyRuleSet"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab