/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The parameters for Jira.See Also:
AWS
* API Reference
The base URL of the Jira site.
*/ inline const Aws::String& GetSiteBaseUrl() const{ return m_siteBaseUrl; } /** *The base URL of the Jira site.
*/ inline bool SiteBaseUrlHasBeenSet() const { return m_siteBaseUrlHasBeenSet; } /** *The base URL of the Jira site.
*/ inline void SetSiteBaseUrl(const Aws::String& value) { m_siteBaseUrlHasBeenSet = true; m_siteBaseUrl = value; } /** *The base URL of the Jira site.
*/ inline void SetSiteBaseUrl(Aws::String&& value) { m_siteBaseUrlHasBeenSet = true; m_siteBaseUrl = std::move(value); } /** *The base URL of the Jira site.
*/ inline void SetSiteBaseUrl(const char* value) { m_siteBaseUrlHasBeenSet = true; m_siteBaseUrl.assign(value); } /** *The base URL of the Jira site.
*/ inline JiraParameters& WithSiteBaseUrl(const Aws::String& value) { SetSiteBaseUrl(value); return *this;} /** *The base URL of the Jira site.
*/ inline JiraParameters& WithSiteBaseUrl(Aws::String&& value) { SetSiteBaseUrl(std::move(value)); return *this;} /** *The base URL of the Jira site.
*/ inline JiraParameters& WithSiteBaseUrl(const char* value) { SetSiteBaseUrl(value); return *this;} private: Aws::String m_siteBaseUrl; bool m_siteBaseUrlHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws