describeActiveReceiptRuleSet
inline suspend fun SesClient.describeActiveReceiptRuleSet(crossinline block: DescribeActiveReceiptRuleSetRequest.Builder.() -> Unit): DescribeActiveReceiptRuleSetResponse
Returns the metadata and receipt rules for the receipt rule set that is currently active.
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 returns the metadata and receipt rules for the receipt rule set that is
// currently active
val resp = sesClient.describeActiveReceiptRuleSet()
//sampleEnd
}