NetworkPerformanceMetricSubscriptionReference
- class aws_cdk.aws_ec2.NetworkPerformanceMetricSubscriptionReference(*, destination, metric, source, statistic)
Bases:
object
A reference to a NetworkPerformanceMetricSubscription resource.
- Parameters:
destination (
str
) – The Destination of the NetworkPerformanceMetricSubscription resource.metric (
str
) – The Metric of the NetworkPerformanceMetricSubscription resource.source (
str
) – The Source of the NetworkPerformanceMetricSubscription resource.statistic (
str
) – The Statistic of the NetworkPerformanceMetricSubscription resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_ec2 as ec2 network_performance_metric_subscription_reference = ec2.NetworkPerformanceMetricSubscriptionReference( destination="destination", metric="metric", source="source", statistic="statistic" )
Attributes
- destination
The Destination of the NetworkPerformanceMetricSubscription resource.
- metric
The Metric of the NetworkPerformanceMetricSubscription resource.
- source
The Source of the NetworkPerformanceMetricSubscription resource.
- statistic
The Statistic of the NetworkPerformanceMetricSubscription resource.