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

The parameters for Jira.

See Also:

AWS * API Reference

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

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