createReceiptRuleSet

Creates an empty receipt rule set.

For information about setting up 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 creates an empty receipt rule set
sesClient.createReceiptRuleSet {
    ruleSetName = "MyRuleSet"
} 
   //sampleEnd
}