interface CfnNetworkPerformanceMetricSubscriptionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnNetworkPerformanceMetricSubscriptionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnNetworkPerformanceMetricSubscriptionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnNetworkPerformanceMetricSubscriptionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnNetworkPerformanceMetricSubscriptionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnNetworkPerformanceMetricSubscriptionMixinProps: ec2.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