setReceiptRulePosition
inline suspend fun SesClient.setReceiptRulePosition(crossinline block: SetReceiptRulePositionRequest.Builder.() -> Unit): SetReceiptRulePositionResponse
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.
Samples
// The following example sets the position of a receipt rule in a receipt rule set
sesClient.setReceiptRulePosition {
ruleSetName = "MyRuleSet"
ruleName = "RuleToReposition"
after = "PutRuleAfterThisRule"
}Content copied to clipboard