/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CostExplorer { namespace Model { /** *

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.

See Also:

AWS * API Reference

*/ class CostCategoryRule { public: AWS_COSTEXPLORER_API CostCategoryRule(); AWS_COSTEXPLORER_API CostCategoryRule(Aws::Utils::Json::JsonView jsonValue); AWS_COSTEXPLORER_API CostCategoryRule& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_COSTEXPLORER_API Aws::Utils::Json::JsonValue Jsonize() const; inline const Aws::String& GetValue() const{ return m_value; } inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } inline CostCategoryRule& WithValue(const Aws::String& value) { SetValue(value); return *this;} inline CostCategoryRule& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} inline CostCategoryRule& WithValue(const char* value) { SetValue(value); return *this;} /** *

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.

*/ inline const Expression& GetRule() const{ return m_rule; } /** *

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.

*/ inline bool RuleHasBeenSet() const { return m_ruleHasBeenSet; } /** *

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.

*/ inline void SetRule(const Expression& value) { m_ruleHasBeenSet = true; m_rule = value; } /** *

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.

*/ inline void SetRule(Expression&& value) { m_ruleHasBeenSet = true; m_rule = std::move(value); } /** *

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.

*/ inline CostCategoryRule& WithRule(const Expression& value) { SetRule(value); return *this;} /** *

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.

*/ inline CostCategoryRule& WithRule(Expression&& value) { SetRule(std::move(value)); return *this;} /** *

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

*/ inline const CostCategoryInheritedValueDimension& GetInheritedValue() const{ return m_inheritedValue; } /** *

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

*/ inline bool InheritedValueHasBeenSet() const { return m_inheritedValueHasBeenSet; } /** *

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

*/ inline void SetInheritedValue(const CostCategoryInheritedValueDimension& value) { m_inheritedValueHasBeenSet = true; m_inheritedValue = value; } /** *

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

*/ inline void SetInheritedValue(CostCategoryInheritedValueDimension&& value) { m_inheritedValueHasBeenSet = true; m_inheritedValue = std::move(value); } /** *

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

*/ inline CostCategoryRule& WithInheritedValue(const CostCategoryInheritedValueDimension& value) { SetInheritedValue(value); return *this;} /** *

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

*/ inline CostCategoryRule& WithInheritedValue(CostCategoryInheritedValueDimension&& value) { SetInheritedValue(std::move(value)); return *this;} /** *

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.

*/ inline const CostCategoryRuleType& GetType() const{ return m_type; } /** *

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.

*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *

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.

*/ inline void SetType(const CostCategoryRuleType& value) { m_typeHasBeenSet = true; m_type = value; } /** *

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.

*/ inline void SetType(CostCategoryRuleType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *

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.

*/ inline CostCategoryRule& WithType(const CostCategoryRuleType& value) { SetType(value); return *this;} /** *

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.

*/ inline CostCategoryRule& WithType(CostCategoryRuleType&& value) { SetType(std::move(value)); return *this;} private: Aws::String m_value; bool m_valueHasBeenSet = false; Expression m_rule; bool m_ruleHasBeenSet = false; CostCategoryInheritedValueDimension m_inheritedValue; bool m_inheritedValueHasBeenSet = false; CostCategoryRuleType m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace CostExplorer } // namespace Aws