/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The properties of a billing group.See Also:
AWS
* API Reference
The description of the billing group.
*/ inline const Aws::String& GetBillingGroupDescription() const{ return m_billingGroupDescription; } /** *The description of the billing group.
*/ inline bool BillingGroupDescriptionHasBeenSet() const { return m_billingGroupDescriptionHasBeenSet; } /** *The description of the billing group.
*/ inline void SetBillingGroupDescription(const Aws::String& value) { m_billingGroupDescriptionHasBeenSet = true; m_billingGroupDescription = value; } /** *The description of the billing group.
*/ inline void SetBillingGroupDescription(Aws::String&& value) { m_billingGroupDescriptionHasBeenSet = true; m_billingGroupDescription = std::move(value); } /** *The description of the billing group.
*/ inline void SetBillingGroupDescription(const char* value) { m_billingGroupDescriptionHasBeenSet = true; m_billingGroupDescription.assign(value); } /** *The description of the billing group.
*/ inline BillingGroupProperties& WithBillingGroupDescription(const Aws::String& value) { SetBillingGroupDescription(value); return *this;} /** *The description of the billing group.
*/ inline BillingGroupProperties& WithBillingGroupDescription(Aws::String&& value) { SetBillingGroupDescription(std::move(value)); return *this;} /** *The description of the billing group.
*/ inline BillingGroupProperties& WithBillingGroupDescription(const char* value) { SetBillingGroupDescription(value); return *this;} private: Aws::String m_billingGroupDescription; bool m_billingGroupDescriptionHasBeenSet = false; }; } // namespace Model } // namespace IoT } // namespace Aws