paws.customer.engagement (version 0.1.0)

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.

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.

Request syntax

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

Details

For information about managing receipt rules, 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 sets the position of a receipt rule in a receipt
# rule set:
# }
# NOT RUN {
svc$set_receipt_rule_position(
  After = "PutRuleAfterThisRule",
  RuleName = "RuleToReposition",
  RuleSetName = "MyRuleSet"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab