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

Configuration information about the external data source.

See * Also:

AWS * API Reference

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

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