interface CfnNetworkPerformanceMetricSubscriptionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnNetworkPerformanceMetricSubscriptionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnNetworkPerformanceMetricSubscriptionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnNetworkPerformanceMetricSubscriptionMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnNetworkPerformanceMetricSubscriptionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnNetworkPerformanceMetricSubscriptionMixinProps |
Properties for CfnNetworkPerformanceMetricSubscriptionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnNetworkPerformanceMetricSubscriptionMixinProps: ec2_mixins.CfnNetworkPerformanceMetricSubscriptionMixinProps = {
destination: 'destination',
metric: 'metric',
source: 'source',
statistic: 'statistic',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination? | string | The Region or Availability Zone that's the target for the subscription. |
| metric? | string | The metric used for the subscription. |
| source? | string | The Region or Availability Zone that's the source for the subscription. |
| statistic? | string | The statistic used for the subscription. |
destination?
Type:
string
(optional)
The Region or Availability Zone that's the target for the subscription.
For example, eu-west-1 .
metric?
Type:
string
(optional)
The metric used for the subscription.
source?
Type:
string
(optional)
The Region or Availability Zone that's the source for the subscription.
For example, us-east-1 .
statistic?
Type:
string
(optional)
The statistic used for the subscription.

.NET
Go
Java
Python
TypeScript