package awscloudwatch // 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 "github.com/aws/aws-cdk-go/awscdk" // // metricStreamStatisticsMetricProperty := &MetricStreamStatisticsMetricProperty{ // MetricName: jsii.String("metricName"), // Namespace: jsii.String("namespace"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-metricstream-metricstreamstatisticsmetric.html // type CfnMetricStream_MetricStreamStatisticsMetricProperty struct { // The name of the metric. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-metricstream-metricstreamstatisticsmetric.html#cfn-cloudwatch-metricstream-metricstreamstatisticsmetric-metricname // MetricName *string `field:"required" json:"metricName" yaml:"metricName"` // The namespace of the metric. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-metricstream-metricstreamstatisticsmetric.html#cfn-cloudwatch-metricstream-metricstreamstatisticsmetric-namespace // Namespace *string `field:"required" json:"namespace" yaml:"namespace"` }