/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A summary of the export job that includes details of the job's configuration
* and its current status.See Also:
AWS
* API Reference
The current status of the export job.
*/ inline const AssetBundleExportJobStatus& GetJobStatus() const{ return m_jobStatus; } /** *The current status of the export job.
*/ inline bool JobStatusHasBeenSet() const { return m_jobStatusHasBeenSet; } /** *The current status of the export job.
*/ inline void SetJobStatus(const AssetBundleExportJobStatus& value) { m_jobStatusHasBeenSet = true; m_jobStatus = value; } /** *The current status of the export job.
*/ inline void SetJobStatus(AssetBundleExportJobStatus&& value) { m_jobStatusHasBeenSet = true; m_jobStatus = std::move(value); } /** *The current status of the export job.
*/ inline AssetBundleExportJobSummary& WithJobStatus(const AssetBundleExportJobStatus& value) { SetJobStatus(value); return *this;} /** *The current status of the export job.
*/ inline AssetBundleExportJobSummary& WithJobStatus(AssetBundleExportJobStatus&& value) { SetJobStatus(std::move(value)); return *this;} /** *The ARN of the export job.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The ARN of the export job.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The ARN of the export job.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The ARN of the export job.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The ARN of the export job.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The ARN of the export job.
*/ inline AssetBundleExportJobSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The ARN of the export job.
*/ inline AssetBundleExportJobSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The ARN of the export job.
*/ inline AssetBundleExportJobSummary& WithArn(const char* value) { SetArn(value); return *this;} /** *The time that the export job was created.
*/ inline const Aws::Utils::DateTime& GetCreatedTime() const{ return m_createdTime; } /** *The time that the export job was created.
*/ inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; } /** *The time that the export job was created.
*/ inline void SetCreatedTime(const Aws::Utils::DateTime& value) { m_createdTimeHasBeenSet = true; m_createdTime = value; } /** *The time that the export job was created.
*/ inline void SetCreatedTime(Aws::Utils::DateTime&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::move(value); } /** *The time that the export job was created.
*/ inline AssetBundleExportJobSummary& WithCreatedTime(const Aws::Utils::DateTime& value) { SetCreatedTime(value); return *this;} /** *The time that the export job was created.
*/ inline AssetBundleExportJobSummary& WithCreatedTime(Aws::Utils::DateTime&& value) { SetCreatedTime(std::move(value)); return *this;} /** *The ID of the export job.
*/ inline const Aws::String& GetAssetBundleExportJobId() const{ return m_assetBundleExportJobId; } /** *The ID of the export job.
*/ inline bool AssetBundleExportJobIdHasBeenSet() const { return m_assetBundleExportJobIdHasBeenSet; } /** *The ID of the export job.
*/ inline void SetAssetBundleExportJobId(const Aws::String& value) { m_assetBundleExportJobIdHasBeenSet = true; m_assetBundleExportJobId = value; } /** *The ID of the export job.
*/ inline void SetAssetBundleExportJobId(Aws::String&& value) { m_assetBundleExportJobIdHasBeenSet = true; m_assetBundleExportJobId = std::move(value); } /** *The ID of the export job.
*/ inline void SetAssetBundleExportJobId(const char* value) { m_assetBundleExportJobIdHasBeenSet = true; m_assetBundleExportJobId.assign(value); } /** *The ID of the export job.
*/ inline AssetBundleExportJobSummary& WithAssetBundleExportJobId(const Aws::String& value) { SetAssetBundleExportJobId(value); return *this;} /** *The ID of the export job.
*/ inline AssetBundleExportJobSummary& WithAssetBundleExportJobId(Aws::String&& value) { SetAssetBundleExportJobId(std::move(value)); return *this;} /** *The ID of the export job.
*/ inline AssetBundleExportJobSummary& WithAssetBundleExportJobId(const char* value) { SetAssetBundleExportJobId(value); return *this;} /** *The flag that determines the inclusion of resource dependencies in the * returned asset bundle.
*/ inline bool GetIncludeAllDependencies() const{ return m_includeAllDependencies; } /** *The flag that determines the inclusion of resource dependencies in the * returned asset bundle.
*/ inline bool IncludeAllDependenciesHasBeenSet() const { return m_includeAllDependenciesHasBeenSet; } /** *The flag that determines the inclusion of resource dependencies in the * returned asset bundle.
*/ inline void SetIncludeAllDependencies(bool value) { m_includeAllDependenciesHasBeenSet = true; m_includeAllDependencies = value; } /** *The flag that determines the inclusion of resource dependencies in the * returned asset bundle.
*/ inline AssetBundleExportJobSummary& WithIncludeAllDependencies(bool value) { SetIncludeAllDependencies(value); return *this;} /** *The format for the export job.
*/ inline const AssetBundleExportFormat& GetExportFormat() const{ return m_exportFormat; } /** *The format for the export job.
*/ inline bool ExportFormatHasBeenSet() const { return m_exportFormatHasBeenSet; } /** *The format for the export job.
*/ inline void SetExportFormat(const AssetBundleExportFormat& value) { m_exportFormatHasBeenSet = true; m_exportFormat = value; } /** *The format for the export job.
*/ inline void SetExportFormat(AssetBundleExportFormat&& value) { m_exportFormatHasBeenSet = true; m_exportFormat = std::move(value); } /** *The format for the export job.
*/ inline AssetBundleExportJobSummary& WithExportFormat(const AssetBundleExportFormat& value) { SetExportFormat(value); return *this;} /** *The format for the export job.
*/ inline AssetBundleExportJobSummary& WithExportFormat(AssetBundleExportFormat&& value) { SetExportFormat(std::move(value)); return *this;} private: AssetBundleExportJobStatus m_jobStatus; bool m_jobStatusHasBeenSet = false; Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::Utils::DateTime m_createdTime; bool m_createdTimeHasBeenSet = false; Aws::String m_assetBundleExportJobId; bool m_assetBundleExportJobIdHasBeenSet = false; bool m_includeAllDependencies; bool m_includeAllDependenciesHasBeenSet = false; AssetBundleExportFormat m_exportFormat; bool m_exportFormatHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws