/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The set of tiering configurations for the pricing rule. See
* Also:
AWS
* API Reference
The possible Amazon Web Services Free Tier configurations.
*/ inline const FreeTierConfig& GetFreeTier() const{ return m_freeTier; } /** *The possible Amazon Web Services Free Tier configurations.
*/ inline bool FreeTierHasBeenSet() const { return m_freeTierHasBeenSet; } /** *The possible Amazon Web Services Free Tier configurations.
*/ inline void SetFreeTier(const FreeTierConfig& value) { m_freeTierHasBeenSet = true; m_freeTier = value; } /** *The possible Amazon Web Services Free Tier configurations.
*/ inline void SetFreeTier(FreeTierConfig&& value) { m_freeTierHasBeenSet = true; m_freeTier = std::move(value); } /** *The possible Amazon Web Services Free Tier configurations.
*/ inline Tiering& WithFreeTier(const FreeTierConfig& value) { SetFreeTier(value); return *this;} /** *The possible Amazon Web Services Free Tier configurations.
*/ inline Tiering& WithFreeTier(FreeTierConfig&& value) { SetFreeTier(std::move(value)); return *this;} private: FreeTierConfig m_freeTier; bool m_freeTierHasBeenSet = false; }; } // namespace Model } // namespace BillingConductor } // namespace Aws