/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Mobile { namespace Model { /** *

Result structure which contains link to download custom-generated SDK and * tool packages used to integrate mobile web or app clients with backed AWS * resources.

See Also:

AWS * API Reference

*/ class ExportBundleResult { public: AWS_MOBILE_API ExportBundleResult(); AWS_MOBILE_API ExportBundleResult(const Aws::AmazonWebServiceResult& result); AWS_MOBILE_API ExportBundleResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

URL which contains the custom-generated SDK and tool packages used to * integrate the client mobile app or web app with the AWS resources created by the * AWS Mobile Hub project.

*/ inline const Aws::String& GetDownloadUrl() const{ return m_downloadUrl; } /** *

URL which contains the custom-generated SDK and tool packages used to * integrate the client mobile app or web app with the AWS resources created by the * AWS Mobile Hub project.

*/ inline void SetDownloadUrl(const Aws::String& value) { m_downloadUrl = value; } /** *

URL which contains the custom-generated SDK and tool packages used to * integrate the client mobile app or web app with the AWS resources created by the * AWS Mobile Hub project.

*/ inline void SetDownloadUrl(Aws::String&& value) { m_downloadUrl = std::move(value); } /** *

URL which contains the custom-generated SDK and tool packages used to * integrate the client mobile app or web app with the AWS resources created by the * AWS Mobile Hub project.

*/ inline void SetDownloadUrl(const char* value) { m_downloadUrl.assign(value); } /** *

URL which contains the custom-generated SDK and tool packages used to * integrate the client mobile app or web app with the AWS resources created by the * AWS Mobile Hub project.

*/ inline ExportBundleResult& WithDownloadUrl(const Aws::String& value) { SetDownloadUrl(value); return *this;} /** *

URL which contains the custom-generated SDK and tool packages used to * integrate the client mobile app or web app with the AWS resources created by the * AWS Mobile Hub project.

*/ inline ExportBundleResult& WithDownloadUrl(Aws::String&& value) { SetDownloadUrl(std::move(value)); return *this;} /** *

URL which contains the custom-generated SDK and tool packages used to * integrate the client mobile app or web app with the AWS resources created by the * AWS Mobile Hub project.

*/ inline ExportBundleResult& WithDownloadUrl(const char* value) { SetDownloadUrl(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline ExportBundleResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ExportBundleResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ExportBundleResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_downloadUrl; Aws::String m_requestId; }; } // namespace Model } // namespace Mobile } // namespace Aws