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

The connector-specific profile properties required by Infor Nexus. *

See Also:

AWS * API Reference

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

The location of the Infor Nexus resource.

*/ inline const Aws::String& GetInstanceUrl() const{ return m_instanceUrl; } /** *

The location of the Infor Nexus resource.

*/ inline bool InstanceUrlHasBeenSet() const { return m_instanceUrlHasBeenSet; } /** *

The location of the Infor Nexus resource.

*/ inline void SetInstanceUrl(const Aws::String& value) { m_instanceUrlHasBeenSet = true; m_instanceUrl = value; } /** *

The location of the Infor Nexus resource.

*/ inline void SetInstanceUrl(Aws::String&& value) { m_instanceUrlHasBeenSet = true; m_instanceUrl = std::move(value); } /** *

The location of the Infor Nexus resource.

*/ inline void SetInstanceUrl(const char* value) { m_instanceUrlHasBeenSet = true; m_instanceUrl.assign(value); } /** *

The location of the Infor Nexus resource.

*/ inline InforNexusConnectorProfileProperties& WithInstanceUrl(const Aws::String& value) { SetInstanceUrl(value); return *this;} /** *

The location of the Infor Nexus resource.

*/ inline InforNexusConnectorProfileProperties& WithInstanceUrl(Aws::String&& value) { SetInstanceUrl(std::move(value)); return *this;} /** *

The location of the Infor Nexus resource.

*/ inline InforNexusConnectorProfileProperties& WithInstanceUrl(const char* value) { SetInstanceUrl(value); return *this;} private: Aws::String m_instanceUrl; bool m_instanceUrlHasBeenSet = false; }; } // namespace Model } // namespace Appflow } // namespace Aws