setReceiptRulePosition
abstract suspend fun setReceiptRulePosition(input: SetReceiptRulePositionRequest): 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
fun main() {
//sampleStart
// The following example sets the position of a receipt rule in a receipt rule set
sesClient.setReceiptRulePosition {
ruleSetName = "MyRuleSet"
ruleName = "RuleToReposition"
after = "PutRuleAfterThisRule"
}
//sampleEnd
}