AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DeleteVariantStoreRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/omics/OmicsRequest.h>
9#include <aws/omics/Omics_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace Omics {
18namespace Model {
19
23 public:
24 AWS_OMICS_API DeleteVariantStoreRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DeleteVariantStore"; }
31
32 AWS_OMICS_API Aws::String SerializePayload() const override;
33
34 AWS_OMICS_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
35
37
40 inline const Aws::String& GetName() const { return m_name; }
41 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
42 template <typename NameT = Aws::String>
43 void SetName(NameT&& value) {
44 m_nameHasBeenSet = true;
45 m_name = std::forward<NameT>(value);
46 }
47 template <typename NameT = Aws::String>
49 SetName(std::forward<NameT>(value));
50 return *this;
51 }
53
55
58 inline bool GetForce() const { return m_force; }
59 inline bool ForceHasBeenSet() const { return m_forceHasBeenSet; }
60 inline void SetForce(bool value) {
61 m_forceHasBeenSet = true;
62 m_force = value;
63 }
65 SetForce(value);
66 return *this;
67 }
69 private:
70 Aws::String m_name;
71
72 bool m_force{false};
73 bool m_nameHasBeenSet = false;
74 bool m_forceHasBeenSet = false;
75};
76
77} // namespace Model
78} // namespace Omics
79} // namespace Aws
DeleteVariantStoreRequest & WithName(NameT &&value)
AWS_OMICS_API Aws::String SerializePayload() const override
AWS_OMICS_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_OMICS_API DeleteVariantStoreRequest()=default
virtual const char * GetServiceRequestName() const override
DeleteVariantStoreRequest & WithForce(bool value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String