listReceiptRuleSets
inline suspend fun SesClient.listReceiptRuleSets(crossinline block: ListReceiptRuleSetsRequest.Builder.() -> Unit): ListReceiptRuleSetsResponse
Lists the receipt rule sets that exist under your Amazon Web Services account in the current Amazon Web Services Region. If there are additional receipt rule sets to be retrieved, you receive a NextToken
that you can provide to the next call to ListReceiptRuleSets
to retrieve the additional entries.
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 lists the receipt rule sets that exist under an AWS account
val resp = sesClient.listReceiptRuleSets {
nextToken = ""
}
//sampleEnd
}