/** * 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 LicenseManager { namespace Model { /** *

Configuration information for AWS Organizations.

See Also:

* AWS * API Reference

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

Enables AWS Organization integration.

*/ inline bool GetEnableIntegration() const{ return m_enableIntegration; } /** *

Enables AWS Organization integration.

*/ inline bool EnableIntegrationHasBeenSet() const { return m_enableIntegrationHasBeenSet; } /** *

Enables AWS Organization integration.

*/ inline void SetEnableIntegration(bool value) { m_enableIntegrationHasBeenSet = true; m_enableIntegration = value; } /** *

Enables AWS Organization integration.

*/ inline OrganizationConfiguration& WithEnableIntegration(bool value) { SetEnableIntegration(value); return *this;} private: bool m_enableIntegration; bool m_enableIntegrationHasBeenSet; }; } // namespace Model } // namespace LicenseManager } // namespace Aws