/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The connector-specific profile properties required when using Slack.
* See Also:
AWS
* API Reference
The location of the Slack resource.
*/ inline const Aws::String& GetInstanceUrl() const{ return m_instanceUrl; } /** *The location of the Slack resource.
*/ inline bool InstanceUrlHasBeenSet() const { return m_instanceUrlHasBeenSet; } /** *The location of the Slack resource.
*/ inline void SetInstanceUrl(const Aws::String& value) { m_instanceUrlHasBeenSet = true; m_instanceUrl = value; } /** *The location of the Slack resource.
*/ inline void SetInstanceUrl(Aws::String&& value) { m_instanceUrlHasBeenSet = true; m_instanceUrl = std::move(value); } /** *The location of the Slack resource.
*/ inline void SetInstanceUrl(const char* value) { m_instanceUrlHasBeenSet = true; m_instanceUrl.assign(value); } /** *The location of the Slack resource.
*/ inline SlackConnectorProfileProperties& WithInstanceUrl(const Aws::String& value) { SetInstanceUrl(value); return *this;} /** *The location of the Slack resource.
*/ inline SlackConnectorProfileProperties& WithInstanceUrl(Aws::String&& value) { SetInstanceUrl(std::move(value)); return *this;} /** *The location of the Slack resource.
*/ inline SlackConnectorProfileProperties& WithInstanceUrl(const char* value) { SetInstanceUrl(value); return *this;} private: Aws::String m_instanceUrl; bool m_instanceUrlHasBeenSet = false; }; } // namespace Model } // namespace Appflow } // namespace Aws