AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
SequenceInformation.h
1
6#pragma once
7#include <aws/omics/Omics_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Omics
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_OMICS_API SequenceInformation() = default;
37 AWS_OMICS_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline long long GetTotalReadCount() const { return m_totalReadCount; }
45 inline bool TotalReadCountHasBeenSet() const { return m_totalReadCountHasBeenSet; }
46 inline void SetTotalReadCount(long long value) { m_totalReadCountHasBeenSet = true; m_totalReadCount = value; }
47 inline SequenceInformation& WithTotalReadCount(long long value) { SetTotalReadCount(value); return *this;}
49
51
54 inline long long GetTotalBaseCount() const { return m_totalBaseCount; }
55 inline bool TotalBaseCountHasBeenSet() const { return m_totalBaseCountHasBeenSet; }
56 inline void SetTotalBaseCount(long long value) { m_totalBaseCountHasBeenSet = true; m_totalBaseCount = value; }
57 inline SequenceInformation& WithTotalBaseCount(long long value) { SetTotalBaseCount(value); return *this;}
59
61
64 inline const Aws::String& GetGeneratedFrom() const { return m_generatedFrom; }
65 inline bool GeneratedFromHasBeenSet() const { return m_generatedFromHasBeenSet; }
66 template<typename GeneratedFromT = Aws::String>
67 void SetGeneratedFrom(GeneratedFromT&& value) { m_generatedFromHasBeenSet = true; m_generatedFrom = std::forward<GeneratedFromT>(value); }
68 template<typename GeneratedFromT = Aws::String>
69 SequenceInformation& WithGeneratedFrom(GeneratedFromT&& value) { SetGeneratedFrom(std::forward<GeneratedFromT>(value)); return *this;}
71
73
76 inline const Aws::String& GetAlignment() const { return m_alignment; }
77 inline bool AlignmentHasBeenSet() const { return m_alignmentHasBeenSet; }
78 template<typename AlignmentT = Aws::String>
79 void SetAlignment(AlignmentT&& value) { m_alignmentHasBeenSet = true; m_alignment = std::forward<AlignmentT>(value); }
80 template<typename AlignmentT = Aws::String>
81 SequenceInformation& WithAlignment(AlignmentT&& value) { SetAlignment(std::forward<AlignmentT>(value)); return *this;}
83 private:
84
85 long long m_totalReadCount{0};
86 bool m_totalReadCountHasBeenSet = false;
87
88 long long m_totalBaseCount{0};
89 bool m_totalBaseCountHasBeenSet = false;
90
91 Aws::String m_generatedFrom;
92 bool m_generatedFromHasBeenSet = false;
93
94 Aws::String m_alignment;
95 bool m_alignmentHasBeenSet = false;
96 };
97
98} // namespace Model
99} // namespace Omics
100} // namespace Aws
AWS_OMICS_API Aws::Utils::Json::JsonValue Jsonize() const
void SetGeneratedFrom(GeneratedFromT &&value)
SequenceInformation & WithAlignment(AlignmentT &&value)
AWS_OMICS_API SequenceInformation()=default
SequenceInformation & WithTotalReadCount(long long value)
SequenceInformation & WithTotalBaseCount(long long value)
AWS_OMICS_API SequenceInformation & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetAlignment() const
SequenceInformation & WithGeneratedFrom(GeneratedFromT &&value)
AWS_OMICS_API SequenceInformation(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetGeneratedFrom() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue