Describe Subscription Filters
| cloudwatchlogs_describe_subscription_filters | R Documentation |
Lists the subscription filters for the specified log group¶
Description¶
Lists the subscription filters for the specified log group. You can list all the subscription filters or filter the results by prefix. The results are ASCII-sorted by filter name.
Usage¶
Arguments¶
logGroupName[required] The name of the log group.
filterNamePrefixThe prefix to match. If you don't specify a value, no prefix filter is applied.
nextTokenThe token for the next set of items to return. (You received this token from a previous call.)
limitThe maximum number of items returned. If you don't specify a value, the default is up to 50 items.
Value¶
A list with the following syntax:
list(
subscriptionFilters = list(
list(
filterName = "string",
logGroupName = "string",
filterPattern = "string",
destinationArn = "string",
roleArn = "string",
distribution = "Random"|"ByLogStream",
creationTime = 123
)
),
nextToken = "string"
)