/** * 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 QuickSight { namespace Model { class StartAssetBundleExportJobResult { public: AWS_QUICKSIGHT_API StartAssetBundleExportJobResult(); AWS_QUICKSIGHT_API StartAssetBundleExportJobResult(const Aws::AmazonWebServiceResult& result); AWS_QUICKSIGHT_API StartAssetBundleExportJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) for the export job.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The Amazon Resource Name (ARN) for the export job.

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

The Amazon Resource Name (ARN) for the export job.

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

The Amazon Resource Name (ARN) for the export job.

*/ inline void SetArn(const char* value) { m_arn.assign(value); } /** *

The Amazon Resource Name (ARN) for the export job.

*/ inline StartAssetBundleExportJobResult& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The Amazon Resource Name (ARN) for the export job.

*/ inline StartAssetBundleExportJobResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) for the export job.

*/ inline StartAssetBundleExportJobResult& WithArn(const char* value) { SetArn(value); return *this;} /** *

The ID of the job. This ID is unique while the job is running. After the job * is completed, you can reuse this ID for another job.

*/ inline const Aws::String& GetAssetBundleExportJobId() const{ return m_assetBundleExportJobId; } /** *

The ID of the job. This ID is unique while the job is running. After the job * is completed, you can reuse this ID for another job.

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

The ID of the job. This ID is unique while the job is running. After the job * is completed, you can reuse this ID for another job.

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

The ID of the job. This ID is unique while the job is running. After the job * is completed, you can reuse this ID for another job.

*/ inline void SetAssetBundleExportJobId(const char* value) { m_assetBundleExportJobId.assign(value); } /** *

The ID of the job. This ID is unique while the job is running. After the job * is completed, you can reuse this ID for another job.

*/ inline StartAssetBundleExportJobResult& WithAssetBundleExportJobId(const Aws::String& value) { SetAssetBundleExportJobId(value); return *this;} /** *

The ID of the job. This ID is unique while the job is running. After the job * is completed, you can reuse this ID for another job.

*/ inline StartAssetBundleExportJobResult& WithAssetBundleExportJobId(Aws::String&& value) { SetAssetBundleExportJobId(std::move(value)); return *this;} /** *

The ID of the job. This ID is unique while the job is running. After the job * is completed, you can reuse this ID for another job.

*/ inline StartAssetBundleExportJobResult& WithAssetBundleExportJobId(const char* value) { SetAssetBundleExportJobId(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 StartAssetBundleExportJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartAssetBundleExportJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartAssetBundleExportJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} /** *

The HTTP status of the response.

*/ inline int GetStatus() const{ return m_status; } /** *

The HTTP status of the response.

*/ inline void SetStatus(int value) { m_status = value; } /** *

The HTTP status of the response.

*/ inline StartAssetBundleExportJobResult& WithStatus(int value) { SetStatus(value); return *this;} private: Aws::String m_arn; Aws::String m_assetBundleExportJobId; Aws::String m_requestId; int m_status; }; } // namespace Model } // namespace QuickSight } // namespace Aws