interface NetworkPerformanceMetricSubscriptionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.NetworkPerformanceMetricSubscriptionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#NetworkPerformanceMetricSubscriptionReference |
Java | software.amazon.awscdk.services.ec2.NetworkPerformanceMetricSubscriptionReference |
Python | aws_cdk.aws_ec2.NetworkPerformanceMetricSubscriptionReference |
TypeScript | aws-cdk-lib » aws_ec2 » NetworkPerformanceMetricSubscriptionReference |
A reference to a NetworkPerformanceMetricSubscription resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const networkPerformanceMetricSubscriptionReference: ec2.NetworkPerformanceMetricSubscriptionReference = {
destination: 'destination',
metric: 'metric',
source: 'source',
statistic: 'statistic',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The Destination of the NetworkPerformanceMetricSubscription resource. |
| metric | string | The Metric of the NetworkPerformanceMetricSubscription resource. |
| source | string | The Source of the NetworkPerformanceMetricSubscription resource. |
| statistic | string | The Statistic of the NetworkPerformanceMetricSubscription resource. |
destination
Type:
string
The Destination of the NetworkPerformanceMetricSubscription resource.
metric
Type:
string
The Metric of the NetworkPerformanceMetricSubscription resource.
source
Type:
string
The Source of the NetworkPerformanceMetricSubscription resource.
statistic
Type:
string
The Statistic of the NetworkPerformanceMetricSubscription resource.

.NET
Go
Java
Python
TypeScript