AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateSequenceStoreRequest.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/SseConfig.h>
11#include <aws/core/utils/memory/stl/AWSMap.h>
12#include <aws/omics/model/ETagAlgorithmFamily.h>
13#include <utility>
14
15namespace Aws
16{
17namespace Omics
18{
19namespace Model
20{
21
25 {
26 public:
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "CreateSequenceStore"; }
34
35 AWS_OMICS_API Aws::String SerializePayload() const override;
36
37
39
42 inline const Aws::String& GetName() const{ return m_name; }
43 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
44 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
45 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
46 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
47 inline CreateSequenceStoreRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
48 inline CreateSequenceStoreRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
49 inline CreateSequenceStoreRequest& WithName(const char* value) { SetName(value); return *this;}
51
53
56 inline const Aws::String& GetDescription() const{ return m_description; }
57 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
58 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
59 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
60 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
61 inline CreateSequenceStoreRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
62 inline CreateSequenceStoreRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
63 inline CreateSequenceStoreRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
65
67
70 inline const SseConfig& GetSseConfig() const{ return m_sseConfig; }
71 inline bool SseConfigHasBeenSet() const { return m_sseConfigHasBeenSet; }
72 inline void SetSseConfig(const SseConfig& value) { m_sseConfigHasBeenSet = true; m_sseConfig = value; }
73 inline void SetSseConfig(SseConfig&& value) { m_sseConfigHasBeenSet = true; m_sseConfig = std::move(value); }
74 inline CreateSequenceStoreRequest& WithSseConfig(const SseConfig& value) { SetSseConfig(value); return *this;}
75 inline CreateSequenceStoreRequest& WithSseConfig(SseConfig&& value) { SetSseConfig(std::move(value)); return *this;}
77
79
82 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
83 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
84 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tagsHasBeenSet = true; m_tags = value; }
85 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
87 inline CreateSequenceStoreRequest& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
88 inline CreateSequenceStoreRequest& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
89 inline CreateSequenceStoreRequest& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
90 inline CreateSequenceStoreRequest& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
91 inline CreateSequenceStoreRequest& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; }
92 inline CreateSequenceStoreRequest& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
93 inline CreateSequenceStoreRequest& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
94 inline CreateSequenceStoreRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
96
98
102 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
103 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
104 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
105 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
106 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
107 inline CreateSequenceStoreRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
108 inline CreateSequenceStoreRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
109 inline CreateSequenceStoreRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
111
113
117 inline const Aws::String& GetFallbackLocation() const{ return m_fallbackLocation; }
118 inline bool FallbackLocationHasBeenSet() const { return m_fallbackLocationHasBeenSet; }
119 inline void SetFallbackLocation(const Aws::String& value) { m_fallbackLocationHasBeenSet = true; m_fallbackLocation = value; }
120 inline void SetFallbackLocation(Aws::String&& value) { m_fallbackLocationHasBeenSet = true; m_fallbackLocation = std::move(value); }
121 inline void SetFallbackLocation(const char* value) { m_fallbackLocationHasBeenSet = true; m_fallbackLocation.assign(value); }
123 inline CreateSequenceStoreRequest& WithFallbackLocation(Aws::String&& value) { SetFallbackLocation(std::move(value)); return *this;}
124 inline CreateSequenceStoreRequest& WithFallbackLocation(const char* value) { SetFallbackLocation(value); return *this;}
126
128
131 inline const ETagAlgorithmFamily& GetETagAlgorithmFamily() const{ return m_eTagAlgorithmFamily; }
132 inline bool ETagAlgorithmFamilyHasBeenSet() const { return m_eTagAlgorithmFamilyHasBeenSet; }
133 inline void SetETagAlgorithmFamily(const ETagAlgorithmFamily& value) { m_eTagAlgorithmFamilyHasBeenSet = true; m_eTagAlgorithmFamily = value; }
134 inline void SetETagAlgorithmFamily(ETagAlgorithmFamily&& value) { m_eTagAlgorithmFamilyHasBeenSet = true; m_eTagAlgorithmFamily = std::move(value); }
138 private:
139
140 Aws::String m_name;
141 bool m_nameHasBeenSet = false;
142
143 Aws::String m_description;
144 bool m_descriptionHasBeenSet = false;
145
146 SseConfig m_sseConfig;
147 bool m_sseConfigHasBeenSet = false;
148
150 bool m_tagsHasBeenSet = false;
151
152 Aws::String m_clientToken;
153 bool m_clientTokenHasBeenSet = false;
154
155 Aws::String m_fallbackLocation;
156 bool m_fallbackLocationHasBeenSet = false;
157
158 ETagAlgorithmFamily m_eTagAlgorithmFamily;
159 bool m_eTagAlgorithmFamilyHasBeenSet = false;
160 };
161
162} // namespace Model
163} // namespace Omics
164} // namespace Aws
CreateSequenceStoreRequest & WithName(Aws::String &&value)
void SetETagAlgorithmFamily(const ETagAlgorithmFamily &value)
const ETagAlgorithmFamily & GetETagAlgorithmFamily() const
CreateSequenceStoreRequest & AddTags(Aws::String &&key, const char *value)
CreateSequenceStoreRequest & WithETagAlgorithmFamily(ETagAlgorithmFamily &&value)
CreateSequenceStoreRequest & WithSseConfig(SseConfig &&value)
AWS_OMICS_API Aws::String SerializePayload() const override
CreateSequenceStoreRequest & WithDescription(const char *value)
CreateSequenceStoreRequest & AddTags(const char *key, const char *value)
CreateSequenceStoreRequest & WithFallbackLocation(const Aws::String &value)
CreateSequenceStoreRequest & WithFallbackLocation(Aws::String &&value)
CreateSequenceStoreRequest & WithClientToken(const Aws::String &value)
CreateSequenceStoreRequest & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateSequenceStoreRequest & WithDescription(const Aws::String &value)
CreateSequenceStoreRequest & WithFallbackLocation(const char *value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
void SetTags(Aws::Map< Aws::String, Aws::String > &&value)
CreateSequenceStoreRequest & WithSseConfig(const SseConfig &value)
CreateSequenceStoreRequest & AddTags(const char *key, Aws::String &&value)
CreateSequenceStoreRequest & WithETagAlgorithmFamily(const ETagAlgorithmFamily &value)
CreateSequenceStoreRequest & AddTags(Aws::String &&key, const Aws::String &value)
CreateSequenceStoreRequest & AddTags(const Aws::String &key, Aws::String &&value)
virtual const char * GetServiceRequestName() const override
CreateSequenceStoreRequest & AddTags(const Aws::String &key, const Aws::String &value)
CreateSequenceStoreRequest & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateSequenceStoreRequest & WithName(const char *value)
CreateSequenceStoreRequest & WithClientToken(const char *value)
CreateSequenceStoreRequest & WithName(const Aws::String &value)
CreateSequenceStoreRequest & AddTags(Aws::String &&key, Aws::String &&value)
CreateSequenceStoreRequest & WithDescription(Aws::String &&value)
CreateSequenceStoreRequest & WithClientToken(Aws::String &&value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String