AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
UpdateKxDatabaseRequest.h
1
6#pragma once
7#include <aws/finspace/Finspace_EXPORTS.h>
8#include <aws/finspace/FinspaceRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11#include <aws/core/utils/UUID.h>
12
13namespace Aws
14{
15namespace finspace
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_FINSPACE_API UpdateKxDatabaseRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "UpdateKxDatabase"; }
32
33 AWS_FINSPACE_API Aws::String SerializePayload() const override;
34
35
37
40 inline const Aws::String& GetEnvironmentId() const { return m_environmentId; }
41 inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; }
42 template<typename EnvironmentIdT = Aws::String>
43 void SetEnvironmentId(EnvironmentIdT&& value) { m_environmentIdHasBeenSet = true; m_environmentId = std::forward<EnvironmentIdT>(value); }
44 template<typename EnvironmentIdT = Aws::String>
45 UpdateKxDatabaseRequest& WithEnvironmentId(EnvironmentIdT&& value) { SetEnvironmentId(std::forward<EnvironmentIdT>(value)); return *this;}
47
49
52 inline const Aws::String& GetDatabaseName() const { return m_databaseName; }
53 inline bool DatabaseNameHasBeenSet() const { return m_databaseNameHasBeenSet; }
54 template<typename DatabaseNameT = Aws::String>
55 void SetDatabaseName(DatabaseNameT&& value) { m_databaseNameHasBeenSet = true; m_databaseName = std::forward<DatabaseNameT>(value); }
56 template<typename DatabaseNameT = Aws::String>
57 UpdateKxDatabaseRequest& WithDatabaseName(DatabaseNameT&& value) { SetDatabaseName(std::forward<DatabaseNameT>(value)); return *this;}
59
61
64 inline const Aws::String& GetDescription() const { return m_description; }
65 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
66 template<typename DescriptionT = Aws::String>
67 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
68 template<typename DescriptionT = Aws::String>
69 UpdateKxDatabaseRequest& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
71
73
76 inline const Aws::String& GetClientToken() const { return m_clientToken; }
77 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
78 template<typename ClientTokenT = Aws::String>
79 void SetClientToken(ClientTokenT&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::forward<ClientTokenT>(value); }
80 template<typename ClientTokenT = Aws::String>
81 UpdateKxDatabaseRequest& WithClientToken(ClientTokenT&& value) { SetClientToken(std::forward<ClientTokenT>(value)); return *this;}
83 private:
84
85 Aws::String m_environmentId;
86 bool m_environmentIdHasBeenSet = false;
87
88 Aws::String m_databaseName;
89 bool m_databaseNameHasBeenSet = false;
90
91 Aws::String m_description;
92 bool m_descriptionHasBeenSet = false;
93
95 bool m_clientTokenHasBeenSet = true;
96 };
97
98} // namespace Model
99} // namespace finspace
100} // namespace Aws
static Aws::Utils::UUID PseudoRandomUUID()
UpdateKxDatabaseRequest & WithEnvironmentId(EnvironmentIdT &&value)
AWS_FINSPACE_API UpdateKxDatabaseRequest()=default
UpdateKxDatabaseRequest & WithDescription(DescriptionT &&value)
AWS_FINSPACE_API Aws::String SerializePayload() const override
UpdateKxDatabaseRequest & WithDatabaseName(DatabaseNameT &&value)
virtual const char * GetServiceRequestName() const override
UpdateKxDatabaseRequest & WithClientToken(ClientTokenT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String