/**
* 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 UpdateFreeTierConfig& 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 UpdateFreeTierConfig& value) { m_freeTierHasBeenSet = true; m_freeTier = value; } /** *The possible Amazon Web Services Free Tier configurations.
*/ inline void SetFreeTier(UpdateFreeTierConfig&& value) { m_freeTierHasBeenSet = true; m_freeTier = std::move(value); } /** *The possible Amazon Web Services Free Tier configurations.
*/ inline UpdateTieringInput& WithFreeTier(const UpdateFreeTierConfig& value) { SetFreeTier(value); return *this;} /** *The possible Amazon Web Services Free Tier configurations.
*/ inline UpdateTieringInput& WithFreeTier(UpdateFreeTierConfig&& value) { SetFreeTier(std::move(value)); return *this;} private: UpdateFreeTierConfig m_freeTier; bool m_freeTierHasBeenSet = false; }; } // namespace Model } // namespace BillingConductor } // namespace Aws