CostCategory constructor

CostCategory({
  1. required String costCategoryArn,
  2. required String effectiveStart,
  3. required String name,
  4. required CostCategoryRuleVersion ruleVersion,
  5. required List<CostCategoryRule> rules,
  6. String? effectiveEnd,
  7. List<CostCategoryProcessingStatus>? processingStatus,
})

Implementation

CostCategory({
  required this.costCategoryArn,
  required this.effectiveStart,
  required this.name,
  required this.ruleVersion,
  required this.rules,
  this.effectiveEnd,
  this.processingStatus,
});