Describe Aws Network Performance Metric Subscriptions
ec2_describe_aws_network_performance_metric_subscriptions | R Documentation |
Describes the current Infrastructure Performance metric subscriptions¶
Description¶
Describes the current Infrastructure Performance metric subscriptions.
Usage¶
ec2_describe_aws_network_performance_metric_subscriptions(MaxResults,
NextToken, Filters, DryRun)
Arguments¶
MaxResults |
The maximum number of results to return with a single call. To
retrieve the remaining results, make another call with the returned
|
NextToken |
The token for the next page of results. |
Filters |
One or more filters. |
DryRun |
Checks whether you have the required permissions for the action,
without actually making the request, and provides an error response. If
you have the required permissions, the error response is
|
Value¶
A list with the following syntax:
list(
NextToken = "string",
Subscriptions = list(
list(
Source = "string",
Destination = "string",
Metric = "aggregate-latency",
Statistic = "p50",
Period = "five-minutes"|"fifteen-minutes"|"one-hour"|"three-hours"|"one-day"|"one-week"
)
)
)
Request syntax¶
svc$describe_aws_network_performance_metric_subscriptions(
MaxResults = 123,
NextToken = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
DryRun = TRUE|FALSE
)