/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The amount of savings that you're accumulating, against the public On-Demand
* rate of the usage accrued in an account.See Also:
AWS
* API Reference
The savings amount that you're accumulating for the usage that's covered by a * Savings Plans, when compared to the On-Demand equivalent of the same usage.
*/ inline const Aws::String& GetNetSavings() const{ return m_netSavings; } /** *The savings amount that you're accumulating for the usage that's covered by a * Savings Plans, when compared to the On-Demand equivalent of the same usage.
*/ inline bool NetSavingsHasBeenSet() const { return m_netSavingsHasBeenSet; } /** *The savings amount that you're accumulating for the usage that's covered by a * Savings Plans, when compared to the On-Demand equivalent of the same usage.
*/ inline void SetNetSavings(const Aws::String& value) { m_netSavingsHasBeenSet = true; m_netSavings = value; } /** *The savings amount that you're accumulating for the usage that's covered by a * Savings Plans, when compared to the On-Demand equivalent of the same usage.
*/ inline void SetNetSavings(Aws::String&& value) { m_netSavingsHasBeenSet = true; m_netSavings = std::move(value); } /** *The savings amount that you're accumulating for the usage that's covered by a * Savings Plans, when compared to the On-Demand equivalent of the same usage.
*/ inline void SetNetSavings(const char* value) { m_netSavingsHasBeenSet = true; m_netSavings.assign(value); } /** *The savings amount that you're accumulating for the usage that's covered by a * Savings Plans, when compared to the On-Demand equivalent of the same usage.
*/ inline SavingsPlansSavings& WithNetSavings(const Aws::String& value) { SetNetSavings(value); return *this;} /** *The savings amount that you're accumulating for the usage that's covered by a * Savings Plans, when compared to the On-Demand equivalent of the same usage.
*/ inline SavingsPlansSavings& WithNetSavings(Aws::String&& value) { SetNetSavings(std::move(value)); return *this;} /** *The savings amount that you're accumulating for the usage that's covered by a * Savings Plans, when compared to the On-Demand equivalent of the same usage.
*/ inline SavingsPlansSavings& WithNetSavings(const char* value) { SetNetSavings(value); return *this;} /** *How much the amount that the usage would have cost if it was accrued at the * On-Demand rate.
*/ inline const Aws::String& GetOnDemandCostEquivalent() const{ return m_onDemandCostEquivalent; } /** *How much the amount that the usage would have cost if it was accrued at the * On-Demand rate.
*/ inline bool OnDemandCostEquivalentHasBeenSet() const { return m_onDemandCostEquivalentHasBeenSet; } /** *How much the amount that the usage would have cost if it was accrued at the * On-Demand rate.
*/ inline void SetOnDemandCostEquivalent(const Aws::String& value) { m_onDemandCostEquivalentHasBeenSet = true; m_onDemandCostEquivalent = value; } /** *How much the amount that the usage would have cost if it was accrued at the * On-Demand rate.
*/ inline void SetOnDemandCostEquivalent(Aws::String&& value) { m_onDemandCostEquivalentHasBeenSet = true; m_onDemandCostEquivalent = std::move(value); } /** *How much the amount that the usage would have cost if it was accrued at the * On-Demand rate.
*/ inline void SetOnDemandCostEquivalent(const char* value) { m_onDemandCostEquivalentHasBeenSet = true; m_onDemandCostEquivalent.assign(value); } /** *How much the amount that the usage would have cost if it was accrued at the * On-Demand rate.
*/ inline SavingsPlansSavings& WithOnDemandCostEquivalent(const Aws::String& value) { SetOnDemandCostEquivalent(value); return *this;} /** *How much the amount that the usage would have cost if it was accrued at the * On-Demand rate.
*/ inline SavingsPlansSavings& WithOnDemandCostEquivalent(Aws::String&& value) { SetOnDemandCostEquivalent(std::move(value)); return *this;} /** *How much the amount that the usage would have cost if it was accrued at the * On-Demand rate.
*/ inline SavingsPlansSavings& WithOnDemandCostEquivalent(const char* value) { SetOnDemandCostEquivalent(value); return *this;} private: Aws::String m_netSavings; bool m_netSavingsHasBeenSet = false; Aws::String m_onDemandCostEquivalent; bool m_onDemandCostEquivalentHasBeenSet = false; }; } // namespace Model } // namespace CostExplorer } // namespace Aws