deleteReceiptRule
inline suspend fun SesClient.deleteReceiptRule(crossinline block: DeleteReceiptRuleRequest.Builder.() -> Unit): DeleteReceiptRuleResponse
Deletes the specified receipt rule.
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 deletes a receipt rule
sesClient.deleteReceiptRule {
ruleSetName = "MyRuleSet"
ruleName = "MyRule"
}
//sampleEnd
}