MetricStreamExcludeFilter constructor

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

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

Implementation

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