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

The possible Amazon Web Services Free Tier configurations.

See * Also:

AWS * API Reference

*/ class UpdateFreeTierConfig { public: AWS_BILLINGCONDUCTOR_API UpdateFreeTierConfig(); AWS_BILLINGCONDUCTOR_API UpdateFreeTierConfig(Aws::Utils::Json::JsonView jsonValue); AWS_BILLINGCONDUCTOR_API UpdateFreeTierConfig& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_BILLINGCONDUCTOR_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Activate or deactivate application of Amazon Web Services Free Tier.

*/ inline bool GetActivated() const{ return m_activated; } /** *

Activate or deactivate application of Amazon Web Services Free Tier.

*/ inline bool ActivatedHasBeenSet() const { return m_activatedHasBeenSet; } /** *

Activate or deactivate application of Amazon Web Services Free Tier.

*/ inline void SetActivated(bool value) { m_activatedHasBeenSet = true; m_activated = value; } /** *

Activate or deactivate application of Amazon Web Services Free Tier.

*/ inline UpdateFreeTierConfig& WithActivated(bool value) { SetActivated(value); return *this;} private: bool m_activated; bool m_activatedHasBeenSet = false; }; } // namespace Model } // namespace BillingConductor } // namespace Aws