BudgetFilterExpressionNotDimensions constructor

const BudgetFilterExpressionNotDimensions({
  1. required Input<String> key,
  2. Input<List<String>?>? matchOptions,
  3. required Input<List<String>> values,
})

Creates a new BudgetFilterExpressionNotDimensions. key (Optional) The cost category key to filter on. matchOptions (Optional) The match options for the cost category filter. Valid values are EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, GREATER_THAN_OR_EQUAL, CASE_SENSITIVE, CASE_INSENSITIVE. Note: ABSENT is not supported due to AWS API contradictions (it requires values to be absent but also cannot have values set). values (Optional) A list of cost category values to match. At least one value is required.

Implementation

const BudgetFilterExpressionNotDimensions({
  required this.key,
  this.matchOptions,
  required this.values,
});