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

The properties of a billing group.

See Also:

AWS * API Reference

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

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