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

Details about a read set.

See Also:

AWS * API Reference

*/ class ExportReadSetDetail { public: AWS_OMICS_API ExportReadSetDetail(); AWS_OMICS_API ExportReadSetDetail(Aws::Utils::Json::JsonView jsonValue); AWS_OMICS_API ExportReadSetDetail& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_OMICS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The set's ID.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The set's ID.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

The set's ID.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

The set's ID.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

The set's ID.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

The set's ID.

*/ inline ExportReadSetDetail& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The set's ID.

*/ inline ExportReadSetDetail& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The set's ID.

*/ inline ExportReadSetDetail& WithId(const char* value) { SetId(value); return *this;} /** *

The set's status.

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

The set's status.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The set's status.

*/ inline void SetStatus(const ReadSetExportJobItemStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

The set's status.

*/ inline void SetStatus(ReadSetExportJobItemStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

The set's status.

*/ inline ExportReadSetDetail& WithStatus(const ReadSetExportJobItemStatus& value) { SetStatus(value); return *this;} /** *

The set's status.

*/ inline ExportReadSetDetail& WithStatus(ReadSetExportJobItemStatus&& value) { SetStatus(std::move(value)); return *this;} /** *

The set's status message.

*/ inline const Aws::String& GetStatusMessage() const{ return m_statusMessage; } /** *

The set's status message.

*/ inline bool StatusMessageHasBeenSet() const { return m_statusMessageHasBeenSet; } /** *

The set's status message.

*/ inline void SetStatusMessage(const Aws::String& value) { m_statusMessageHasBeenSet = true; m_statusMessage = value; } /** *

The set's status message.

*/ inline void SetStatusMessage(Aws::String&& value) { m_statusMessageHasBeenSet = true; m_statusMessage = std::move(value); } /** *

The set's status message.

*/ inline void SetStatusMessage(const char* value) { m_statusMessageHasBeenSet = true; m_statusMessage.assign(value); } /** *

The set's status message.

*/ inline ExportReadSetDetail& WithStatusMessage(const Aws::String& value) { SetStatusMessage(value); return *this;} /** *

The set's status message.

*/ inline ExportReadSetDetail& WithStatusMessage(Aws::String&& value) { SetStatusMessage(std::move(value)); return *this;} /** *

The set's status message.

*/ inline ExportReadSetDetail& WithStatusMessage(const char* value) { SetStatusMessage(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; ReadSetExportJobItemStatus m_status; bool m_statusHasBeenSet = false; Aws::String m_statusMessage; bool m_statusMessageHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws