/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies if the billing group has the following features
* enabled.See Also:
AWS
* API Reference
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