Class: Aws::CostExplorer::Types::CostCategoryRule

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-costexplorer/types.rb

Overview

Rules are processed in order. If there are multiple rules that match the line item, then the first rule to match is used to determine that Cost Category value.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#inherited_valueTypes::CostCategoryInheritedValueDimension

The value the line item is categorized as if the line item contains the matched dimension.



722
723
724
725
726
727
728
729
# File 'lib/aws-sdk-costexplorer/types.rb', line 722

class CostCategoryRule < Struct.new(
  :value,
  :rule,
  :inherited_value,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#ruleTypes::Expression

An [Expression] object used to categorize costs. This supports dimensions, tags, and nested expressions. Currently the only dimensions supported are ‘LINKED_ACCOUNT`, `SERVICE_CODE`, `RECORD_TYPE`, `LINKED_ACCOUNT_NAME`, `REGION`, and `USAGE_TYPE`.

‘RECORD_TYPE` is a dimension used for Cost Explorer APIs, and is also supported for Cost Category expressions. This dimension uses different terms, depending on whether you’re using the console or API/JSON editor. For a detailed comparison, see [Term Comparisons] in the *Billing and Cost Management User Guide*.

[1]: docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html [2]: docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/manage-cost-categories.html#cost-categories-terms

Returns:



722
723
724
725
726
727
728
729
# File 'lib/aws-sdk-costexplorer/types.rb', line 722

class CostCategoryRule < Struct.new(
  :value,
  :rule,
  :inherited_value,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

You can define the ‘CostCategoryRule` rule type as either `REGULAR` or `INHERITED_VALUE`. The `INHERITED_VALUE` rule type adds the flexibility to define a rule that dynamically inherits the cost category value. This value is from the dimension value that’s defined by ‘CostCategoryInheritedValueDimension`. For example, suppose that you want to costs to be dynamically grouped based on the value of a specific tag key. First, choose an inherited value rule type, and then choose the tag dimension and specify the tag key to use.

Returns:

  • (String)


722
723
724
725
726
727
728
729
# File 'lib/aws-sdk-costexplorer/types.rb', line 722

class CostCategoryRule < Struct.new(
  :value,
  :rule,
  :inherited_value,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The default value for the cost category.

Returns:

  • (String)


722
723
724
725
726
727
728
729
# File 'lib/aws-sdk-costexplorer/types.rb', line 722

class CostCategoryRule < Struct.new(
  :value,
  :rule,
  :inherited_value,
  :type)
  SENSITIVE = []
  include Aws::Structure
end