AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteKxUserRequest.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 Http
16{
17 class URI;
18} //namespace Http
19namespace finspace
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_FINSPACE_API DeleteKxUserRequest();
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "DeleteKxUser"; }
36
37 AWS_FINSPACE_API Aws::String SerializePayload() const override;
38
39 AWS_FINSPACE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
46 inline const Aws::String& GetUserName() const{ return m_userName; }
47 inline bool UserNameHasBeenSet() const { return m_userNameHasBeenSet; }
48 inline void SetUserName(const Aws::String& value) { m_userNameHasBeenSet = true; m_userName = value; }
49 inline void SetUserName(Aws::String&& value) { m_userNameHasBeenSet = true; m_userName = std::move(value); }
50 inline void SetUserName(const char* value) { m_userNameHasBeenSet = true; m_userName.assign(value); }
51 inline DeleteKxUserRequest& WithUserName(const Aws::String& value) { SetUserName(value); return *this;}
52 inline DeleteKxUserRequest& WithUserName(Aws::String&& value) { SetUserName(std::move(value)); return *this;}
53 inline DeleteKxUserRequest& WithUserName(const char* value) { SetUserName(value); return *this;}
55
57
60 inline const Aws::String& GetEnvironmentId() const{ return m_environmentId; }
61 inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; }
62 inline void SetEnvironmentId(const Aws::String& value) { m_environmentIdHasBeenSet = true; m_environmentId = value; }
63 inline void SetEnvironmentId(Aws::String&& value) { m_environmentIdHasBeenSet = true; m_environmentId = std::move(value); }
64 inline void SetEnvironmentId(const char* value) { m_environmentIdHasBeenSet = true; m_environmentId.assign(value); }
65 inline DeleteKxUserRequest& WithEnvironmentId(const Aws::String& value) { SetEnvironmentId(value); return *this;}
66 inline DeleteKxUserRequest& WithEnvironmentId(Aws::String&& value) { SetEnvironmentId(std::move(value)); return *this;}
67 inline DeleteKxUserRequest& WithEnvironmentId(const char* value) { SetEnvironmentId(value); return *this;}
69
71
74 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
75 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
76 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
77 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
78 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
79 inline DeleteKxUserRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
80 inline DeleteKxUserRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
81 inline DeleteKxUserRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
83 private:
84
85 Aws::String m_userName;
86 bool m_userNameHasBeenSet = false;
87
88 Aws::String m_environmentId;
89 bool m_environmentIdHasBeenSet = false;
90
91 Aws::String m_clientToken;
92 bool m_clientTokenHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace finspace
97} // namespace Aws
DeleteKxUserRequest & WithUserName(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
DeleteKxUserRequest & WithEnvironmentId(const Aws::String &value)
DeleteKxUserRequest & WithUserName(const Aws::String &value)
DeleteKxUserRequest & WithClientToken(Aws::String &&value)
DeleteKxUserRequest & WithClientToken(const char *value)
void SetUserName(const Aws::String &value)
AWS_FINSPACE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteKxUserRequest & WithEnvironmentId(const char *value)
DeleteKxUserRequest & WithUserName(const char *value)
AWS_FINSPACE_API Aws::String SerializePayload() const override
DeleteKxUserRequest & WithClientToken(const Aws::String &value)
void SetEnvironmentId(const Aws::String &value)
DeleteKxUserRequest & WithEnvironmentId(Aws::String &&value)
void SetClientToken(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String