/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configuration information about the external data source.See
* Also:
AWS
* API Reference
Configuration information for Amazon AppIntegrations to automatically ingest * content.
*/ inline const AppIntegrationsConfiguration& GetAppIntegrations() const{ return m_appIntegrations; } /** *Configuration information for Amazon AppIntegrations to automatically ingest * content.
*/ inline bool AppIntegrationsHasBeenSet() const { return m_appIntegrationsHasBeenSet; } /** *Configuration information for Amazon AppIntegrations to automatically ingest * content.
*/ inline void SetAppIntegrations(const AppIntegrationsConfiguration& value) { m_appIntegrationsHasBeenSet = true; m_appIntegrations = value; } /** *Configuration information for Amazon AppIntegrations to automatically ingest * content.
*/ inline void SetAppIntegrations(AppIntegrationsConfiguration&& value) { m_appIntegrationsHasBeenSet = true; m_appIntegrations = std::move(value); } /** *Configuration information for Amazon AppIntegrations to automatically ingest * content.
*/ inline SourceConfiguration& WithAppIntegrations(const AppIntegrationsConfiguration& value) { SetAppIntegrations(value); return *this;} /** *Configuration information for Amazon AppIntegrations to automatically ingest * content.
*/ inline SourceConfiguration& WithAppIntegrations(AppIntegrationsConfiguration&& value) { SetAppIntegrations(std::move(value)); return *this;} private: AppIntegrationsConfiguration m_appIntegrations; bool m_appIntegrationsHasBeenSet = false; }; } // namespace Model } // namespace ConnectWisdomService } // namespace Aws