reorderReceiptRuleSet
abstract suspend fun reorderReceiptRuleSet(input: ReorderReceiptRuleSetRequest): ReorderReceiptRuleSetResponse
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.
Samples
fun main() {
//sampleStart
// The following example reorders the receipt rules within a receipt rule set
sesClient.reorderReceiptRuleSet {
ruleSetName = "MyRuleSet"
ruleNames = listOf<String>(
"MyRule",
"MyOtherRule"
)
}
//sampleEnd
}