/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details about a read set export job.See Also:
AWS
* API Reference
The job's ID.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *The job's ID.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *The job's ID.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *The job's ID.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *The job's ID.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *The job's ID.
*/ inline ExportReadSetJobDetail& WithId(const Aws::String& value) { SetId(value); return *this;} /** *The job's ID.
*/ inline ExportReadSetJobDetail& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *The job's ID.
*/ inline ExportReadSetJobDetail& WithId(const char* value) { SetId(value); return *this;} /** *The job's sequence store ID.
*/ inline const Aws::String& GetSequenceStoreId() const{ return m_sequenceStoreId; } /** *The job's sequence store ID.
*/ inline bool SequenceStoreIdHasBeenSet() const { return m_sequenceStoreIdHasBeenSet; } /** *The job's sequence store ID.
*/ inline void SetSequenceStoreId(const Aws::String& value) { m_sequenceStoreIdHasBeenSet = true; m_sequenceStoreId = value; } /** *The job's sequence store ID.
*/ inline void SetSequenceStoreId(Aws::String&& value) { m_sequenceStoreIdHasBeenSet = true; m_sequenceStoreId = std::move(value); } /** *The job's sequence store ID.
*/ inline void SetSequenceStoreId(const char* value) { m_sequenceStoreIdHasBeenSet = true; m_sequenceStoreId.assign(value); } /** *The job's sequence store ID.
*/ inline ExportReadSetJobDetail& WithSequenceStoreId(const Aws::String& value) { SetSequenceStoreId(value); return *this;} /** *The job's sequence store ID.
*/ inline ExportReadSetJobDetail& WithSequenceStoreId(Aws::String&& value) { SetSequenceStoreId(std::move(value)); return *this;} /** *The job's sequence store ID.
*/ inline ExportReadSetJobDetail& WithSequenceStoreId(const char* value) { SetSequenceStoreId(value); return *this;} /** *The job's destination in Amazon S3.
*/ inline const Aws::String& GetDestination() const{ return m_destination; } /** *The job's destination in Amazon S3.
*/ inline bool DestinationHasBeenSet() const { return m_destinationHasBeenSet; } /** *The job's destination in Amazon S3.
*/ inline void SetDestination(const Aws::String& value) { m_destinationHasBeenSet = true; m_destination = value; } /** *The job's destination in Amazon S3.
*/ inline void SetDestination(Aws::String&& value) { m_destinationHasBeenSet = true; m_destination = std::move(value); } /** *The job's destination in Amazon S3.
*/ inline void SetDestination(const char* value) { m_destinationHasBeenSet = true; m_destination.assign(value); } /** *The job's destination in Amazon S3.
*/ inline ExportReadSetJobDetail& WithDestination(const Aws::String& value) { SetDestination(value); return *this;} /** *The job's destination in Amazon S3.
*/ inline ExportReadSetJobDetail& WithDestination(Aws::String&& value) { SetDestination(std::move(value)); return *this;} /** *The job's destination in Amazon S3.
*/ inline ExportReadSetJobDetail& WithDestination(const char* value) { SetDestination(value); return *this;} /** *The job's status.
*/ inline const ReadSetExportJobStatus& GetStatus() const{ return m_status; } /** *The job's status.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *The job's status.
*/ inline void SetStatus(const ReadSetExportJobStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *The job's status.
*/ inline void SetStatus(ReadSetExportJobStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *The job's status.
*/ inline ExportReadSetJobDetail& WithStatus(const ReadSetExportJobStatus& value) { SetStatus(value); return *this;} /** *The job's status.
*/ inline ExportReadSetJobDetail& WithStatus(ReadSetExportJobStatus&& value) { SetStatus(std::move(value)); return *this;} /** *When the job was created.
*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *When the job was created.
*/ inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; } /** *When the job was created.
*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTimeHasBeenSet = true; m_creationTime = value; } /** *When the job was created.
*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::move(value); } /** *When the job was created.
*/ inline ExportReadSetJobDetail& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *When the job was created.
*/ inline ExportReadSetJobDetail& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} /** *When the job completed.
*/ inline const Aws::Utils::DateTime& GetCompletionTime() const{ return m_completionTime; } /** *When the job completed.
*/ inline bool CompletionTimeHasBeenSet() const { return m_completionTimeHasBeenSet; } /** *When the job completed.
*/ inline void SetCompletionTime(const Aws::Utils::DateTime& value) { m_completionTimeHasBeenSet = true; m_completionTime = value; } /** *When the job completed.
*/ inline void SetCompletionTime(Aws::Utils::DateTime&& value) { m_completionTimeHasBeenSet = true; m_completionTime = std::move(value); } /** *When the job completed.
*/ inline ExportReadSetJobDetail& WithCompletionTime(const Aws::Utils::DateTime& value) { SetCompletionTime(value); return *this;} /** *When the job completed.
*/ inline ExportReadSetJobDetail& WithCompletionTime(Aws::Utils::DateTime&& value) { SetCompletionTime(std::move(value)); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; Aws::String m_sequenceStoreId; bool m_sequenceStoreIdHasBeenSet = false; Aws::String m_destination; bool m_destinationHasBeenSet = false; ReadSetExportJobStatus m_status; bool m_statusHasBeenSet = false; Aws::Utils::DateTime m_creationTime; bool m_creationTimeHasBeenSet = false; Aws::Utils::DateTime m_completionTime; bool m_completionTimeHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws