interface MetricStreamStatisticsMetricProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudWatch.CfnMetricStreamPropsMixin.MetricStreamStatisticsMetricProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudwatch#CfnMetricStreamPropsMixin_MetricStreamStatisticsMetricProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudwatch.CfnMetricStreamPropsMixin.MetricStreamStatisticsMetricProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudwatch.CfnMetricStreamPropsMixin.MetricStreamStatisticsMetricProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudwatch » 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 { aws_cloudwatch as cloudwatch } from '@aws-cdk/cfn-property-mixins';
const metricStreamStatisticsMetricProperty: cloudwatch.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