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

Details about a sequence.

See Also:

AWS * API Reference

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

The sequence's total read count.

*/ inline long long GetTotalReadCount() const{ return m_totalReadCount; } /** *

The sequence's total read count.

*/ inline bool TotalReadCountHasBeenSet() const { return m_totalReadCountHasBeenSet; } /** *

The sequence's total read count.

*/ inline void SetTotalReadCount(long long value) { m_totalReadCountHasBeenSet = true; m_totalReadCount = value; } /** *

The sequence's total read count.

*/ inline SequenceInformation& WithTotalReadCount(long long value) { SetTotalReadCount(value); return *this;} /** *

The sequence's total base count.

*/ inline long long GetTotalBaseCount() const{ return m_totalBaseCount; } /** *

The sequence's total base count.

*/ inline bool TotalBaseCountHasBeenSet() const { return m_totalBaseCountHasBeenSet; } /** *

The sequence's total base count.

*/ inline void SetTotalBaseCount(long long value) { m_totalBaseCountHasBeenSet = true; m_totalBaseCount = value; } /** *

The sequence's total base count.

*/ inline SequenceInformation& WithTotalBaseCount(long long value) { SetTotalBaseCount(value); return *this;} /** *

Where the sequence originated.

*/ inline const Aws::String& GetGeneratedFrom() const{ return m_generatedFrom; } /** *

Where the sequence originated.

*/ inline bool GeneratedFromHasBeenSet() const { return m_generatedFromHasBeenSet; } /** *

Where the sequence originated.

*/ inline void SetGeneratedFrom(const Aws::String& value) { m_generatedFromHasBeenSet = true; m_generatedFrom = value; } /** *

Where the sequence originated.

*/ inline void SetGeneratedFrom(Aws::String&& value) { m_generatedFromHasBeenSet = true; m_generatedFrom = std::move(value); } /** *

Where the sequence originated.

*/ inline void SetGeneratedFrom(const char* value) { m_generatedFromHasBeenSet = true; m_generatedFrom.assign(value); } /** *

Where the sequence originated.

*/ inline SequenceInformation& WithGeneratedFrom(const Aws::String& value) { SetGeneratedFrom(value); return *this;} /** *

Where the sequence originated.

*/ inline SequenceInformation& WithGeneratedFrom(Aws::String&& value) { SetGeneratedFrom(std::move(value)); return *this;} /** *

Where the sequence originated.

*/ inline SequenceInformation& WithGeneratedFrom(const char* value) { SetGeneratedFrom(value); return *this;} /** *

The sequence's alignment setting.

*/ inline const Aws::String& GetAlignment() const{ return m_alignment; } /** *

The sequence's alignment setting.

*/ inline bool AlignmentHasBeenSet() const { return m_alignmentHasBeenSet; } /** *

The sequence's alignment setting.

*/ inline void SetAlignment(const Aws::String& value) { m_alignmentHasBeenSet = true; m_alignment = value; } /** *

The sequence's alignment setting.

*/ inline void SetAlignment(Aws::String&& value) { m_alignmentHasBeenSet = true; m_alignment = std::move(value); } /** *

The sequence's alignment setting.

*/ inline void SetAlignment(const char* value) { m_alignmentHasBeenSet = true; m_alignment.assign(value); } /** *

The sequence's alignment setting.

*/ inline SequenceInformation& WithAlignment(const Aws::String& value) { SetAlignment(value); return *this;} /** *

The sequence's alignment setting.

*/ inline SequenceInformation& WithAlignment(Aws::String&& value) { SetAlignment(std::move(value)); return *this;} /** *

The sequence's alignment setting.

*/ inline SequenceInformation& WithAlignment(const char* value) { SetAlignment(value); return *this;} private: long long m_totalReadCount; bool m_totalReadCountHasBeenSet = false; long long m_totalBaseCount; bool m_totalBaseCountHasBeenSet = false; Aws::String m_generatedFrom; bool m_generatedFromHasBeenSet = false; Aws::String m_alignment; bool m_alignmentHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws