SelectionSelectionTag constructor

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

Creates a new SelectionSelectionTag. key Key for the filter. type An operation, such as STRINGEQUALS, that is applied to the key-value pair used to filter resources in a selection. value Value for the filter.

Implementation

const SelectionSelectionTag({
  required this.key,
  required this.type,
  required this.value,
});