Describe Event Categories
docdb_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.
Usage¶
docdb_describe_event_categories(SourceType, Filters)
Arguments¶
SourceType |
The type of source that is generating the events. Valid values: |
Filters |
This parameter is not 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"
)
)
)
)