InsightFiltersUserDefinedValue constructor

const InsightFiltersUserDefinedValue({
  1. required Input<String> comparison,
  2. required Input<String> key,
  3. required Input<String> value,
})

Creates a new InsightFiltersUserDefinedValue. comparison Required. key The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field. value Required.

Implementation

const InsightFiltersUserDefinedValue({
  required this.comparison,
  required this.key,
  required this.value,
});