Description Usage Arguments Value Request syntax
View source: R/cloudwatchlogs_operations.R
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.
1 2 | cloudwatchlogs_describe_subscription_filters(logGroupName,
filterNamePrefix, nextToken, limit)
|
logGroupName |
[required] The name of the log group. |
filterNamePrefix |
The prefix to match. If you don't specify a value, no prefix filter is applied. |
nextToken |
The token for the next set of items to return. (You received this token from a previous call.) |
limit |
The maximum number of items returned. If you don't specify a value, the default is up to 50 items. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | list(
subscriptionFilters = list(
list(
filterName = "string",
logGroupName = "string",
filterPattern = "string",
destinationArn = "string",
roleArn = "string",
distribution = "Random"|"ByLogStream",
creationTime = 123
)
),
nextToken = "string"
)
|
1 2 3 4 5 6 | svc$describe_subscription_filters(
logGroupName = "string",
filterNamePrefix = "string",
nextToken = "string",
limit = 123
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.