Describe Event Categories
rds_describe_event_categories | R Documentation |
Displays a list of categories for all event source types, or, if specified, for a specified source type¶
Description¶
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 .
Usage¶
rds_describe_event_categories(SourceType, Filters)
Arguments¶
SourceType |
The type of source that is generating the events. For RDS Proxy
events, specify Valid Values: |
Filters |
This parameter isn't currently supported. |
Value¶
A list with the following syntax:
list(
EventCategoriesMapList = list(
list(
SourceType = "string",
EventCategories = list(
"string"
)
)
)
)
Request syntax¶
svc$describe_event_categories(
SourceType = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
)
)
Examples¶
## Not run:
# This example lists all DB instance event categories.
svc$describe_event_categories(
SourceType = "db-instance"
)
## End(Not run)