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

The information about the service integration.

See Also:

AWS * API Reference

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

The information about the resource group integration.

*/ inline const ResourceGroup& GetResourceGroup() const{ return m_resourceGroup; } /** *

The information about the resource group integration.

*/ inline bool ResourceGroupHasBeenSet() const { return m_resourceGroupHasBeenSet; } /** *

The information about the resource group integration.

*/ inline void SetResourceGroup(const ResourceGroup& value) { m_resourceGroupHasBeenSet = true; m_resourceGroup = value; } /** *

The information about the resource group integration.

*/ inline void SetResourceGroup(ResourceGroup&& value) { m_resourceGroupHasBeenSet = true; m_resourceGroup = std::move(value); } /** *

The information about the resource group integration.

*/ inline Integrations& WithResourceGroup(const ResourceGroup& value) { SetResourceGroup(value); return *this;} /** *

The information about the resource group integration.

*/ inline Integrations& WithResourceGroup(ResourceGroup&& value) { SetResourceGroup(std::move(value)); return *this;} private: ResourceGroup m_resourceGroup; bool m_resourceGroupHasBeenSet = false; }; } // namespace Model } // namespace AppRegistry } // namespace Aws