deleteReceiptRuleSet
inline suspend fun SesClient.deleteReceiptRuleSet(crossinline block: DeleteReceiptRuleSetRequest.Builder.() -> Unit): DeleteReceiptRuleSetResponse
Deletes the specified receipt rule set and all of the receipt rules it contains.
The currently active rule set cannot be deleted.
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 deletes a receipt rule set
sesClient.deleteReceiptRuleSet {
ruleSetName = "MyRuleSet"
}
//sampleEnd
}