AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ChangeRequest.h
1
6#pragma once
7#include <aws/finspace/Finspace_EXPORTS.h>
8#include <aws/finspace/model/ChangeType.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace finspace
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_FINSPACE_API ChangeRequest();
36 AWS_FINSPACE_API ChangeRequest(Aws::Utils::Json::JsonView jsonValue);
38 AWS_FINSPACE_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
48 inline const ChangeType& GetChangeType() const{ return m_changeType; }
49 inline bool ChangeTypeHasBeenSet() const { return m_changeTypeHasBeenSet; }
50 inline void SetChangeType(const ChangeType& value) { m_changeTypeHasBeenSet = true; m_changeType = value; }
51 inline void SetChangeType(ChangeType&& value) { m_changeTypeHasBeenSet = true; m_changeType = std::move(value); }
52 inline ChangeRequest& WithChangeType(const ChangeType& value) { SetChangeType(value); return *this;}
53 inline ChangeRequest& WithChangeType(ChangeType&& value) { SetChangeType(std::move(value)); return *this;}
55
57
61 inline const Aws::String& GetS3Path() const{ return m_s3Path; }
62 inline bool S3PathHasBeenSet() const { return m_s3PathHasBeenSet; }
63 inline void SetS3Path(const Aws::String& value) { m_s3PathHasBeenSet = true; m_s3Path = value; }
64 inline void SetS3Path(Aws::String&& value) { m_s3PathHasBeenSet = true; m_s3Path = std::move(value); }
65 inline void SetS3Path(const char* value) { m_s3PathHasBeenSet = true; m_s3Path.assign(value); }
66 inline ChangeRequest& WithS3Path(const Aws::String& value) { SetS3Path(value); return *this;}
67 inline ChangeRequest& WithS3Path(Aws::String&& value) { SetS3Path(std::move(value)); return *this;}
68 inline ChangeRequest& WithS3Path(const char* value) { SetS3Path(value); return *this;}
70
72
75 inline const Aws::String& GetDbPath() const{ return m_dbPath; }
76 inline bool DbPathHasBeenSet() const { return m_dbPathHasBeenSet; }
77 inline void SetDbPath(const Aws::String& value) { m_dbPathHasBeenSet = true; m_dbPath = value; }
78 inline void SetDbPath(Aws::String&& value) { m_dbPathHasBeenSet = true; m_dbPath = std::move(value); }
79 inline void SetDbPath(const char* value) { m_dbPathHasBeenSet = true; m_dbPath.assign(value); }
80 inline ChangeRequest& WithDbPath(const Aws::String& value) { SetDbPath(value); return *this;}
81 inline ChangeRequest& WithDbPath(Aws::String&& value) { SetDbPath(std::move(value)); return *this;}
82 inline ChangeRequest& WithDbPath(const char* value) { SetDbPath(value); return *this;}
84 private:
85
86 ChangeType m_changeType;
87 bool m_changeTypeHasBeenSet = false;
88
89 Aws::String m_s3Path;
90 bool m_s3PathHasBeenSet = false;
91
92 Aws::String m_dbPath;
93 bool m_dbPathHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace finspace
98} // namespace Aws
void SetDbPath(const char *value)
void SetS3Path(const char *value)
ChangeRequest & WithS3Path(Aws::String &&value)
AWS_FINSPACE_API Aws::Utils::Json::JsonValue Jsonize() const
void SetDbPath(Aws::String &&value)
ChangeRequest & WithChangeType(const ChangeType &value)
void SetChangeType(ChangeType &&value)
void SetS3Path(Aws::String &&value)
ChangeRequest & WithDbPath(const Aws::String &value)
const ChangeType & GetChangeType() const
void SetDbPath(const Aws::String &value)
ChangeRequest & WithDbPath(Aws::String &&value)
AWS_FINSPACE_API ChangeRequest & operator=(Aws::Utils::Json::JsonView jsonValue)
ChangeRequest & WithDbPath(const char *value)
AWS_FINSPACE_API ChangeRequest(Aws::Utils::Json::JsonView jsonValue)
ChangeRequest & WithChangeType(ChangeType &&value)
const Aws::String & GetDbPath() const
void SetChangeType(const ChangeType &value)
ChangeRequest & WithS3Path(const Aws::String &value)
void SetS3Path(const Aws::String &value)
const Aws::String & GetS3Path() const
ChangeRequest & WithS3Path(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue