describeReceiptRuleSet
inline suspend fun SesClient.describeReceiptRuleSet(crossinline block: DescribeReceiptRuleSetRequest.Builder.() -> Unit): DescribeReceiptRuleSetResponse
Returns the details of the specified receipt rule set.
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 returns the metadata and receipt rules of a receipt rule set
val resp = sesClient.describeReceiptRuleSet {
ruleSetName = "MyRuleSet"
}
//sampleEnd
}