interface MetricStreamStatisticsMetricProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudWatch.Mixins.CfnMetricStreamPropsMixin.MetricStreamStatisticsMetricProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudwatch/mixins#CfnMetricStreamPropsMixin_MetricStreamStatisticsMetricProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudwatch.mixins.CfnMetricStreamPropsMixin.MetricStreamStatisticsMetricProperty |
Python | aws_cdk.mixins_preview.aws_cloudwatch.mixins.CfnMetricStreamPropsMixin.MetricStreamStatisticsMetricProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudwatch » mixins » CfnMetricStreamPropsMixin » MetricStreamStatisticsMetricProperty |
A structure that specifies the metric name and namespace for one metric that is going to have additional statistics included in the stream.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudwatch_mixins } from '@aws-cdk/mixins-preview/aws-cloudwatch';
const metricStreamStatisticsMetricProperty: cloudwatch_mixins.CfnMetricStreamPropsMixin.MetricStreamStatisticsMetricProperty = {
metricName: 'metricName',
namespace: 'namespace',
};
Properties
| Name | Type | Description |
|---|---|---|
| metric | string | The name of the metric. |
| namespace? | string | The namespace of the metric. |
metricName?
Type:
string
(optional)
The name of the metric.
namespace?
Type:
string
(optional)
The namespace of the metric.

.NET
Go
Java
Python
TypeScript