AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UploadReadSetPartRequest.h
1
6#pragma once
7#include <aws/omics/Omics_EXPORTS.h>
8#include <aws/omics/OmicsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/omics/model/ReadSetPartSource.h>
11#include <aws/core/utils/Array.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Http
17{
18 class URI;
19} //namespace Http
20namespace Omics
21{
22namespace Model
23{
24
28 {
29 public:
30 AWS_OMICS_API UploadReadSetPartRequest() = default;
31
32 // Service request name is the Operation name which will send this request out,
33 // each operation should has unique request name, so that we can get operation's name from this request.
34 // Note: this is not true for response, multiple operations may have the same response name,
35 // so we can not get operation's name from response.
36 inline virtual const char* GetServiceRequestName() const override { return "UploadReadSetPart"; }
37
38 AWS_OMICS_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40 AWS_OMICS_API bool SignBody() const override { return false; }
41
42
44
47 inline const Aws::String& GetSequenceStoreId() const { return m_sequenceStoreId; }
48 inline bool SequenceStoreIdHasBeenSet() const { return m_sequenceStoreIdHasBeenSet; }
49 template<typename SequenceStoreIdT = Aws::String>
50 void SetSequenceStoreId(SequenceStoreIdT&& value) { m_sequenceStoreIdHasBeenSet = true; m_sequenceStoreId = std::forward<SequenceStoreIdT>(value); }
51 template<typename SequenceStoreIdT = Aws::String>
52 UploadReadSetPartRequest& WithSequenceStoreId(SequenceStoreIdT&& value) { SetSequenceStoreId(std::forward<SequenceStoreIdT>(value)); return *this;}
54
56
59 inline const Aws::String& GetUploadId() const { return m_uploadId; }
60 inline bool UploadIdHasBeenSet() const { return m_uploadIdHasBeenSet; }
61 template<typename UploadIdT = Aws::String>
62 void SetUploadId(UploadIdT&& value) { m_uploadIdHasBeenSet = true; m_uploadId = std::forward<UploadIdT>(value); }
63 template<typename UploadIdT = Aws::String>
64 UploadReadSetPartRequest& WithUploadId(UploadIdT&& value) { SetUploadId(std::forward<UploadIdT>(value)); return *this;}
66
68
71 inline ReadSetPartSource GetPartSource() const { return m_partSource; }
72 inline bool PartSourceHasBeenSet() const { return m_partSourceHasBeenSet; }
73 inline void SetPartSource(ReadSetPartSource value) { m_partSourceHasBeenSet = true; m_partSource = value; }
76
78
81 inline int GetPartNumber() const { return m_partNumber; }
82 inline bool PartNumberHasBeenSet() const { return m_partNumberHasBeenSet; }
83 inline void SetPartNumber(int value) { m_partNumberHasBeenSet = true; m_partNumber = value; }
84 inline UploadReadSetPartRequest& WithPartNumber(int value) { SetPartNumber(value); return *this;}
86 private:
87
88 Aws::String m_sequenceStoreId;
89 bool m_sequenceStoreIdHasBeenSet = false;
90
91 Aws::String m_uploadId;
92 bool m_uploadIdHasBeenSet = false;
93
95 bool m_partSourceHasBeenSet = false;
96
97 int m_partNumber{0};
98 bool m_partNumberHasBeenSet = false;
99
100 };
101
102} // namespace Model
103} // namespace Omics
104} // namespace Aws
UploadReadSetPartRequest & WithSequenceStoreId(SequenceStoreIdT &&value)
AWS_OMICS_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
UploadReadSetPartRequest & WithUploadId(UploadIdT &&value)
AWS_OMICS_API UploadReadSetPartRequest()=default
virtual const char * GetServiceRequestName() const override
AWS_OMICS_API bool SignBody() const override
UploadReadSetPartRequest & WithPartNumber(int value)
UploadReadSetPartRequest & WithPartSource(ReadSetPartSource value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String