AWS SDK for C++

AWS SDK for C++ Version 1.11.740

Loading...
Searching...
No Matches
BatchDeleteReadSetRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/omics/OmicsRequest.h>
10#include <aws/omics/Omics_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Omics {
16namespace Model {
17
21 public:
22 AWS_OMICS_API BatchDeleteReadSetRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "BatchDeleteReadSet"; }
29
30 AWS_OMICS_API Aws::String SerializePayload() const override;
31
33
36 inline const Aws::Vector<Aws::String>& GetIds() const { return m_ids; }
37 inline bool IdsHasBeenSet() const { return m_idsHasBeenSet; }
38 template <typename IdsT = Aws::Vector<Aws::String>>
39 void SetIds(IdsT&& value) {
40 m_idsHasBeenSet = true;
41 m_ids = std::forward<IdsT>(value);
42 }
43 template <typename IdsT = Aws::Vector<Aws::String>>
45 SetIds(std::forward<IdsT>(value));
46 return *this;
47 }
48 template <typename IdsT = Aws::String>
50 m_idsHasBeenSet = true;
51 m_ids.emplace_back(std::forward<IdsT>(value));
52 return *this;
53 }
55
57
60 inline const Aws::String& GetSequenceStoreId() const { return m_sequenceStoreId; }
61 inline bool SequenceStoreIdHasBeenSet() const { return m_sequenceStoreIdHasBeenSet; }
62 template <typename SequenceStoreIdT = Aws::String>
63 void SetSequenceStoreId(SequenceStoreIdT&& value) {
64 m_sequenceStoreIdHasBeenSet = true;
65 m_sequenceStoreId = std::forward<SequenceStoreIdT>(value);
66 }
67 template <typename SequenceStoreIdT = Aws::String>
69 SetSequenceStoreId(std::forward<SequenceStoreIdT>(value));
70 return *this;
71 }
73 private:
75
76 Aws::String m_sequenceStoreId;
77 bool m_idsHasBeenSet = false;
78 bool m_sequenceStoreIdHasBeenSet = false;
79};
80
81} // namespace Model
82} // namespace Omics
83} // namespace Aws
AWS_OMICS_API Aws::String SerializePayload() const override
BatchDeleteReadSetRequest & AddIds(IdsT &&value)
BatchDeleteReadSetRequest & WithSequenceStoreId(SequenceStoreIdT &&value)
AWS_OMICS_API BatchDeleteReadSetRequest()=default
const Aws::Vector< Aws::String > & GetIds() const
virtual const char * GetServiceRequestName() const override
BatchDeleteReadSetRequest & WithIds(IdsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector