AwsCloudwatchMetricReferenceObject
interface AwsCloudwatchMetricReferenceObject {
metricName: Input<string>;
namespace: Input<string>;
}Object shape for direct CloudWatch metric references.
Example
CODE
const metricReference: AwsCloudwatchMetricReferenceObject = {
namespace: 'Jobcloud/Application',
metricName: 'OrdersErrorCount',
};Properties
metricName: Input<string>
CloudWatch metric name.
namespace: Input<string>
CloudWatch metric namespace.