Class: Aws::CostExplorer::Types::CostCategorySplitChargeRule

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

Overview

Use the split charge rule to split the cost of one Cost Category value across several other target values.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#methodString

The method that's used to define how to split your source costs across your targets.

Proportional - Allocates charges across your targets based on the proportional weighted cost of each target.

Fixed - Allocates charges across your targets based on your defined allocation percentage.

>Even - Allocates costs evenly across all targets.

Returns:

  • (String)


766
767
768
769
770
771
772
773
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 766

class CostCategorySplitChargeRule < Struct.new(
  :source,
  :targets,
  :method,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#parametersArray<Types::CostCategorySplitChargeRuleParameter>

The parameters for a split charge method. This is only required for the FIXED method.



766
767
768
769
770
771
772
773
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 766

class CostCategorySplitChargeRule < Struct.new(
  :source,
  :targets,
  :method,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#sourceString

The Cost Category value that you want to split. That value can't be used as a source or a target in other split charge rules. To indicate uncategorized costs, you can use an empty string as the source.

Returns:

  • (String)


766
767
768
769
770
771
772
773
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 766

class CostCategorySplitChargeRule < Struct.new(
  :source,
  :targets,
  :method,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#targetsArray<String>

The Cost Category values that you want to split costs across. These values can't be used as a source in other split charge rules.

Returns:

  • (Array<String>)


766
767
768
769
770
771
772
773
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 766

class CostCategorySplitChargeRule < Struct.new(
  :source,
  :targets,
  :method,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end