BudgetFilterExpressionNotDimensions constructor
const
BudgetFilterExpressionNotDimensions({})
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,
});