/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Omics { namespace Model { class GetReadSetMetadataResult { public: AWS_OMICS_API GetReadSetMetadataResult(); AWS_OMICS_API GetReadSetMetadataResult(const Aws::AmazonWebServiceResult& result); AWS_OMICS_API GetReadSetMetadataResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The read set's ID.

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

The read set's ID.

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

The read set's ID.

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

The read set's ID.

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

The read set's ID.

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

The read set's ID.

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

The read set's ID.

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

The read set's ARN.

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

The read set's ARN.

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

The read set's ARN.

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

The read set's ARN.

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

The read set's ARN.

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

The read set's ARN.

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

The read set's ARN.

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

The read set's sequence store ID.

*/ inline const Aws::String& GetSequenceStoreId() const{ return m_sequenceStoreId; } /** *

The read set's sequence store ID.

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

The read set's sequence store ID.

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

The read set's sequence store ID.

*/ inline void SetSequenceStoreId(const char* value) { m_sequenceStoreId.assign(value); } /** *

The read set's sequence store ID.

*/ inline GetReadSetMetadataResult& WithSequenceStoreId(const Aws::String& value) { SetSequenceStoreId(value); return *this;} /** *

The read set's sequence store ID.

*/ inline GetReadSetMetadataResult& WithSequenceStoreId(Aws::String&& value) { SetSequenceStoreId(std::move(value)); return *this;} /** *

The read set's sequence store ID.

*/ inline GetReadSetMetadataResult& WithSequenceStoreId(const char* value) { SetSequenceStoreId(value); return *this;} /** *

The read set's subject ID.

*/ inline const Aws::String& GetSubjectId() const{ return m_subjectId; } /** *

The read set's subject ID.

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

The read set's subject ID.

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

The read set's subject ID.

*/ inline void SetSubjectId(const char* value) { m_subjectId.assign(value); } /** *

The read set's subject ID.

*/ inline GetReadSetMetadataResult& WithSubjectId(const Aws::String& value) { SetSubjectId(value); return *this;} /** *

The read set's subject ID.

*/ inline GetReadSetMetadataResult& WithSubjectId(Aws::String&& value) { SetSubjectId(std::move(value)); return *this;} /** *

The read set's subject ID.

*/ inline GetReadSetMetadataResult& WithSubjectId(const char* value) { SetSubjectId(value); return *this;} /** *

The read set's sample ID.

*/ inline const Aws::String& GetSampleId() const{ return m_sampleId; } /** *

The read set's sample ID.

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

The read set's sample ID.

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

The read set's sample ID.

*/ inline void SetSampleId(const char* value) { m_sampleId.assign(value); } /** *

The read set's sample ID.

*/ inline GetReadSetMetadataResult& WithSampleId(const Aws::String& value) { SetSampleId(value); return *this;} /** *

The read set's sample ID.

*/ inline GetReadSetMetadataResult& WithSampleId(Aws::String&& value) { SetSampleId(std::move(value)); return *this;} /** *

The read set's sample ID.

*/ inline GetReadSetMetadataResult& WithSampleId(const char* value) { SetSampleId(value); return *this;} /** *

The read set's status.

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

The read set's status.

*/ inline void SetStatus(const ReadSetStatus& value) { m_status = value; } /** *

The read set's status.

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

The read set's status.

*/ inline GetReadSetMetadataResult& WithStatus(const ReadSetStatus& value) { SetStatus(value); return *this;} /** *

The read set's status.

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

The read set's name.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The read set's name.

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

The read set's name.

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

The read set's name.

*/ inline void SetName(const char* value) { m_name.assign(value); } /** *

The read set's name.

*/ inline GetReadSetMetadataResult& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The read set's name.

*/ inline GetReadSetMetadataResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The read set's name.

*/ inline GetReadSetMetadataResult& WithName(const char* value) { SetName(value); return *this;} /** *

The read set's description.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The read set's description.

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

The read set's description.

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

The read set's description.

*/ inline void SetDescription(const char* value) { m_description.assign(value); } /** *

The read set's description.

*/ inline GetReadSetMetadataResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The read set's description.

*/ inline GetReadSetMetadataResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The read set's description.

*/ inline GetReadSetMetadataResult& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The read set's file type.

*/ inline const FileType& GetFileType() const{ return m_fileType; } /** *

The read set's file type.

*/ inline void SetFileType(const FileType& value) { m_fileType = value; } /** *

The read set's file type.

*/ inline void SetFileType(FileType&& value) { m_fileType = std::move(value); } /** *

The read set's file type.

*/ inline GetReadSetMetadataResult& WithFileType(const FileType& value) { SetFileType(value); return *this;} /** *

The read set's file type.

*/ inline GetReadSetMetadataResult& WithFileType(FileType&& value) { SetFileType(std::move(value)); return *this;} /** *

When the read set was created.

*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *

When the read set was created.

*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTime = value; } /** *

When the read set was created.

*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTime = std::move(value); } /** *

When the read set was created.

*/ inline GetReadSetMetadataResult& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *

When the read set was created.

*/ inline GetReadSetMetadataResult& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} /** *

The read set's sequence information.

*/ inline const SequenceInformation& GetSequenceInformation() const{ return m_sequenceInformation; } /** *

The read set's sequence information.

*/ inline void SetSequenceInformation(const SequenceInformation& value) { m_sequenceInformation = value; } /** *

The read set's sequence information.

*/ inline void SetSequenceInformation(SequenceInformation&& value) { m_sequenceInformation = std::move(value); } /** *

The read set's sequence information.

*/ inline GetReadSetMetadataResult& WithSequenceInformation(const SequenceInformation& value) { SetSequenceInformation(value); return *this;} /** *

The read set's sequence information.

*/ inline GetReadSetMetadataResult& WithSequenceInformation(SequenceInformation&& value) { SetSequenceInformation(std::move(value)); return *this;} /** *

The read set's genome reference ARN.

*/ inline const Aws::String& GetReferenceArn() const{ return m_referenceArn; } /** *

The read set's genome reference ARN.

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

The read set's genome reference ARN.

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

The read set's genome reference ARN.

*/ inline void SetReferenceArn(const char* value) { m_referenceArn.assign(value); } /** *

The read set's genome reference ARN.

*/ inline GetReadSetMetadataResult& WithReferenceArn(const Aws::String& value) { SetReferenceArn(value); return *this;} /** *

The read set's genome reference ARN.

*/ inline GetReadSetMetadataResult& WithReferenceArn(Aws::String&& value) { SetReferenceArn(std::move(value)); return *this;} /** *

The read set's genome reference ARN.

*/ inline GetReadSetMetadataResult& WithReferenceArn(const char* value) { SetReferenceArn(value); return *this;} /** *

The read set's files.

*/ inline const ReadSetFiles& GetFiles() const{ return m_files; } /** *

The read set's files.

*/ inline void SetFiles(const ReadSetFiles& value) { m_files = value; } /** *

The read set's files.

*/ inline void SetFiles(ReadSetFiles&& value) { m_files = std::move(value); } /** *

The read set's files.

*/ inline GetReadSetMetadataResult& WithFiles(const ReadSetFiles& value) { SetFiles(value); return *this;} /** *

The read set's files.

*/ inline GetReadSetMetadataResult& WithFiles(ReadSetFiles&& value) { SetFiles(std::move(value)); return *this;} /** *

The status message for a read set. It provides more detail as to why the * read set has a status.

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

The status message for a read set. It provides more detail as to why the * read set has a status.

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

The status message for a read set. It provides more detail as to why the * read set has a status.

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

The status message for a read set. It provides more detail as to why the * read set has a status.

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

The status message for a read set. It provides more detail as to why the * read set has a status.

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

The status message for a read set. It provides more detail as to why the * read set has a status.

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

The status message for a read set. It provides more detail as to why the * read set has a status.

*/ inline GetReadSetMetadataResult& WithStatusMessage(const char* value) { SetStatusMessage(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 GetReadSetMetadataResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetReadSetMetadataResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetReadSetMetadataResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_id; Aws::String m_arn; Aws::String m_sequenceStoreId; Aws::String m_subjectId; Aws::String m_sampleId; ReadSetStatus m_status; Aws::String m_name; Aws::String m_description; FileType m_fileType; Aws::Utils::DateTime m_creationTime; SequenceInformation m_sequenceInformation; Aws::String m_referenceArn; ReadSetFiles m_files; Aws::String m_statusMessage; Aws::String m_requestId; }; } // namespace Model } // namespace Omics } // namespace Aws