AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ExportServerlessCacheSnapshotRequest.h
1
6#pragma once
7#include <aws/elasticache/ElastiCache_EXPORTS.h>
8#include <aws/elasticache/ElastiCacheRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace ElastiCache
15{
16namespace Model
17{
18
22 {
23 public:
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 "ExportServerlessCacheSnapshot"; }
31
32 AWS_ELASTICACHE_API Aws::String SerializePayload() const override;
33
34 protected:
35 AWS_ELASTICACHE_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
36
37 public:
38
40
44 inline const Aws::String& GetServerlessCacheSnapshotName() const{ return m_serverlessCacheSnapshotName; }
45 inline bool ServerlessCacheSnapshotNameHasBeenSet() const { return m_serverlessCacheSnapshotNameHasBeenSet; }
46 inline void SetServerlessCacheSnapshotName(const Aws::String& value) { m_serverlessCacheSnapshotNameHasBeenSet = true; m_serverlessCacheSnapshotName = value; }
47 inline void SetServerlessCacheSnapshotName(Aws::String&& value) { m_serverlessCacheSnapshotNameHasBeenSet = true; m_serverlessCacheSnapshotName = std::move(value); }
48 inline void SetServerlessCacheSnapshotName(const char* value) { m_serverlessCacheSnapshotNameHasBeenSet = true; m_serverlessCacheSnapshotName.assign(value); }
53
55
60 inline const Aws::String& GetS3BucketName() const{ return m_s3BucketName; }
61 inline bool S3BucketNameHasBeenSet() const { return m_s3BucketNameHasBeenSet; }
62 inline void SetS3BucketName(const Aws::String& value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName = value; }
63 inline void SetS3BucketName(Aws::String&& value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName = std::move(value); }
64 inline void SetS3BucketName(const char* value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName.assign(value); }
66 inline ExportServerlessCacheSnapshotRequest& WithS3BucketName(Aws::String&& value) { SetS3BucketName(std::move(value)); return *this;}
67 inline ExportServerlessCacheSnapshotRequest& WithS3BucketName(const char* value) { SetS3BucketName(value); return *this;}
69 private:
70
71 Aws::String m_serverlessCacheSnapshotName;
72 bool m_serverlessCacheSnapshotNameHasBeenSet = false;
73
74 Aws::String m_s3BucketName;
75 bool m_s3BucketNameHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace ElastiCache
80} // namespace Aws
ExportServerlessCacheSnapshotRequest & WithServerlessCacheSnapshotName(Aws::String &&value)
ExportServerlessCacheSnapshotRequest & WithS3BucketName(Aws::String &&value)
ExportServerlessCacheSnapshotRequest & WithS3BucketName(const Aws::String &value)
ExportServerlessCacheSnapshotRequest & WithServerlessCacheSnapshotName(const char *value)
AWS_ELASTICACHE_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_ELASTICACHE_API Aws::String SerializePayload() const override
ExportServerlessCacheSnapshotRequest & WithServerlessCacheSnapshotName(const Aws::String &value)
ExportServerlessCacheSnapshotRequest & WithS3BucketName(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String