describeEventCategories
Displays a list of categories for all event source types, or, if specified, for a specified source type. You can also see this list in the "Amazon RDS event categories and event messages" section of the Amazon RDS User Guide or the Amazon Aurora User Guide.
Samples
import aws.sdk.kotlin.services.rds.model.Filter
fun main() {
//sampleStart
// The following example retrieves details about the event categories for all available event sources.
val resp = rdsClient.describeEventCategories {
sourceType = ""
filters = listOf<Filter>(
)
}
//sampleEnd
}