/** * 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 Organizations.

See Also:

AWS * API Reference

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

Enables Organizations integration.

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

Enables Organizations integration.

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

Enables Organizations integration.

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

Enables Organizations integration.

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