/** * 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 { /** *

Specifies if the billing group has the following features * enabled.

See Also:

AWS * API Reference

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

Specifies if this billing group will automatically associate newly added * Amazon Web Services accounts that join your consolidated billing family.

*/ inline bool GetAutoAssociate() const{ return m_autoAssociate; } /** *

Specifies if this billing group will automatically associate newly added * Amazon Web Services accounts that join your consolidated billing family.

*/ inline bool AutoAssociateHasBeenSet() const { return m_autoAssociateHasBeenSet; } /** *

Specifies if this billing group will automatically associate newly added * Amazon Web Services accounts that join your consolidated billing family.

*/ inline void SetAutoAssociate(bool value) { m_autoAssociateHasBeenSet = true; m_autoAssociate = value; } /** *

Specifies if this billing group will automatically associate newly added * Amazon Web Services accounts that join your consolidated billing family.

*/ inline UpdateBillingGroupAccountGrouping& WithAutoAssociate(bool value) { SetAutoAssociate(value); return *this;} private: bool m_autoAssociate; bool m_autoAssociateHasBeenSet = false; }; } // namespace Model } // namespace BillingConductor } // namespace Aws