describeReceiptRule
inline suspend fun SesClient.describeReceiptRule(crossinline block: DescribeReceiptRuleRequest.Builder.() -> Unit): DescribeReceiptRuleResponse
Returns the details of the specified receipt rule.
For information about setting up 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 returns the details of a receipt rule
val resp = sesClient.describeReceiptRule {
ruleSetName = "MyRuleSet"
ruleName = "MyRule"
}
//sampleEnd
}