/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details about an imported variant item.See Also:
AWS
* API Reference
The source file's location in Amazon S3.
*/ inline const Aws::String& GetSource() const{ return m_source; } /** *The source file's location in Amazon S3.
*/ inline bool SourceHasBeenSet() const { return m_sourceHasBeenSet; } /** *The source file's location in Amazon S3.
*/ inline void SetSource(const Aws::String& value) { m_sourceHasBeenSet = true; m_source = value; } /** *The source file's location in Amazon S3.
*/ inline void SetSource(Aws::String&& value) { m_sourceHasBeenSet = true; m_source = std::move(value); } /** *The source file's location in Amazon S3.
*/ inline void SetSource(const char* value) { m_sourceHasBeenSet = true; m_source.assign(value); } /** *The source file's location in Amazon S3.
*/ inline VariantImportItemDetail& WithSource(const Aws::String& value) { SetSource(value); return *this;} /** *The source file's location in Amazon S3.
*/ inline VariantImportItemDetail& WithSource(Aws::String&& value) { SetSource(std::move(value)); return *this;} /** *The source file's location in Amazon S3.
*/ inline VariantImportItemDetail& WithSource(const char* value) { SetSource(value); return *this;} /** *The item's job status.
*/ inline const JobStatus& GetJobStatus() const{ return m_jobStatus; } /** *The item's job status.
*/ inline bool JobStatusHasBeenSet() const { return m_jobStatusHasBeenSet; } /** *The item's job status.
*/ inline void SetJobStatus(const JobStatus& value) { m_jobStatusHasBeenSet = true; m_jobStatus = value; } /** *The item's job status.
*/ inline void SetJobStatus(JobStatus&& value) { m_jobStatusHasBeenSet = true; m_jobStatus = std::move(value); } /** *The item's job status.
*/ inline VariantImportItemDetail& WithJobStatus(const JobStatus& value) { SetJobStatus(value); return *this;} /** *The item's job status.
*/ inline VariantImportItemDetail& WithJobStatus(JobStatus&& value) { SetJobStatus(std::move(value)); return *this;} /** *A message that provides additional context about a job
*/ inline const Aws::String& GetStatusMessage() const{ return m_statusMessage; } /** *A message that provides additional context about a job
*/ inline bool StatusMessageHasBeenSet() const { return m_statusMessageHasBeenSet; } /** *A message that provides additional context about a job
*/ inline void SetStatusMessage(const Aws::String& value) { m_statusMessageHasBeenSet = true; m_statusMessage = value; } /** *A message that provides additional context about a job
*/ inline void SetStatusMessage(Aws::String&& value) { m_statusMessageHasBeenSet = true; m_statusMessage = std::move(value); } /** *A message that provides additional context about a job
*/ inline void SetStatusMessage(const char* value) { m_statusMessageHasBeenSet = true; m_statusMessage.assign(value); } /** *A message that provides additional context about a job
*/ inline VariantImportItemDetail& WithStatusMessage(const Aws::String& value) { SetStatusMessage(value); return *this;} /** *A message that provides additional context about a job
*/ inline VariantImportItemDetail& WithStatusMessage(Aws::String&& value) { SetStatusMessage(std::move(value)); return *this;} /** *A message that provides additional context about a job
*/ inline VariantImportItemDetail& WithStatusMessage(const char* value) { SetStatusMessage(value); return *this;} private: Aws::String m_source; bool m_sourceHasBeenSet = false; JobStatus m_jobStatus; bool m_jobStatusHasBeenSet = false; Aws::String m_statusMessage; bool m_statusMessageHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws