MetricStreamIncludeFilter constructor

const MetricStreamIncludeFilter({
  1. Input<List<String>?>? metricNames,
  2. required Input<String> namespace,
})

Creates a new MetricStreamIncludeFilter. metricNames An array that defines the metrics you want to include for this metric namespace namespace Name of the metric namespace in the filter.

Implementation

const MetricStreamIncludeFilter({
  this.metricNames,
  required this.namespace,
});