AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
DeleteServerlessCacheRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/elasticache/ElastiCacheRequest.h>
9#include <aws/elasticache/ElastiCache_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace ElastiCache {
15namespace Model {
16
20 public:
21 AWS_ELASTICACHE_API DeleteServerlessCacheRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DeleteServerlessCache"; }
28
29 AWS_ELASTICACHE_API Aws::String SerializePayload() const override;
30
31 protected:
32 AWS_ELASTICACHE_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
33
34 public:
36
39 inline const Aws::String& GetServerlessCacheName() const { return m_serverlessCacheName; }
40 inline bool ServerlessCacheNameHasBeenSet() const { return m_serverlessCacheNameHasBeenSet; }
41 template <typename ServerlessCacheNameT = Aws::String>
42 void SetServerlessCacheName(ServerlessCacheNameT&& value) {
43 m_serverlessCacheNameHasBeenSet = true;
44 m_serverlessCacheName = std::forward<ServerlessCacheNameT>(value);
45 }
46 template <typename ServerlessCacheNameT = Aws::String>
48 SetServerlessCacheName(std::forward<ServerlessCacheNameT>(value));
49 return *this;
50 }
52
54
59 inline const Aws::String& GetFinalSnapshotName() const { return m_finalSnapshotName; }
60 inline bool FinalSnapshotNameHasBeenSet() const { return m_finalSnapshotNameHasBeenSet; }
61 template <typename FinalSnapshotNameT = Aws::String>
62 void SetFinalSnapshotName(FinalSnapshotNameT&& value) {
63 m_finalSnapshotNameHasBeenSet = true;
64 m_finalSnapshotName = std::forward<FinalSnapshotNameT>(value);
65 }
66 template <typename FinalSnapshotNameT = Aws::String>
68 SetFinalSnapshotName(std::forward<FinalSnapshotNameT>(value));
69 return *this;
70 }
72 private:
73 Aws::String m_serverlessCacheName;
74
75 Aws::String m_finalSnapshotName;
76 bool m_serverlessCacheNameHasBeenSet = false;
77 bool m_finalSnapshotNameHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace ElastiCache
82} // namespace Aws
DeleteServerlessCacheRequest & WithServerlessCacheName(ServerlessCacheNameT &&value)
DeleteServerlessCacheRequest & WithFinalSnapshotName(FinalSnapshotNameT &&value)
AWS_ELASTICACHE_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_ELASTICACHE_API DeleteServerlessCacheRequest()=default
AWS_ELASTICACHE_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String