Describe Event Categories
| redshift_describe_event_categories | R Documentation |
Displays a list of event categories for all event source types, or for a specified source type¶
Description¶
Displays a list of event categories for all event source types, or for a specified source type. For a list of the event categories and source types, go to Amazon Redshift Event Notifications.
Usage¶
Arguments¶
SourceTypeThe source type, such as cluster or parameter group, to which the described event categories apply.
Valid values: cluster, cluster-snapshot, cluster-parameter-group, cluster-security-group, and scheduled-action.
Value¶
A list with the following syntax:
list(
EventCategoriesMapList = list(
list(
SourceType = "string",
Events = list(
list(
EventId = "string",
EventCategories = list(
"string"
),
EventDescription = "string",
Severity = "string"
)
)
)
)
)