AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetKxConnectionStringRequest.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
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace finspace
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_FINSPACE_API GetKxConnectionStringRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "GetKxConnectionString"; }
35
36 AWS_FINSPACE_API Aws::String SerializePayload() const override;
37
38 AWS_FINSPACE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
48 inline const Aws::String& GetUserArn() const{ return m_userArn; }
49 inline bool UserArnHasBeenSet() const { return m_userArnHasBeenSet; }
50 inline void SetUserArn(const Aws::String& value) { m_userArnHasBeenSet = true; m_userArn = value; }
51 inline void SetUserArn(Aws::String&& value) { m_userArnHasBeenSet = true; m_userArn = std::move(value); }
52 inline void SetUserArn(const char* value) { m_userArnHasBeenSet = true; m_userArn.assign(value); }
53 inline GetKxConnectionStringRequest& WithUserArn(const Aws::String& value) { SetUserArn(value); return *this;}
54 inline GetKxConnectionStringRequest& WithUserArn(Aws::String&& value) { SetUserArn(std::move(value)); return *this;}
55 inline GetKxConnectionStringRequest& WithUserArn(const char* value) { SetUserArn(value); return *this;}
57
59
62 inline const Aws::String& GetEnvironmentId() const{ return m_environmentId; }
63 inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; }
64 inline void SetEnvironmentId(const Aws::String& value) { m_environmentIdHasBeenSet = true; m_environmentId = value; }
65 inline void SetEnvironmentId(Aws::String&& value) { m_environmentIdHasBeenSet = true; m_environmentId = std::move(value); }
66 inline void SetEnvironmentId(const char* value) { m_environmentIdHasBeenSet = true; m_environmentId.assign(value); }
67 inline GetKxConnectionStringRequest& WithEnvironmentId(const Aws::String& value) { SetEnvironmentId(value); return *this;}
68 inline GetKxConnectionStringRequest& WithEnvironmentId(Aws::String&& value) { SetEnvironmentId(std::move(value)); return *this;}
69 inline GetKxConnectionStringRequest& WithEnvironmentId(const char* value) { SetEnvironmentId(value); return *this;}
71
73
76 inline const Aws::String& GetClusterName() const{ return m_clusterName; }
77 inline bool ClusterNameHasBeenSet() const { return m_clusterNameHasBeenSet; }
78 inline void SetClusterName(const Aws::String& value) { m_clusterNameHasBeenSet = true; m_clusterName = value; }
79 inline void SetClusterName(Aws::String&& value) { m_clusterNameHasBeenSet = true; m_clusterName = std::move(value); }
80 inline void SetClusterName(const char* value) { m_clusterNameHasBeenSet = true; m_clusterName.assign(value); }
81 inline GetKxConnectionStringRequest& WithClusterName(const Aws::String& value) { SetClusterName(value); return *this;}
82 inline GetKxConnectionStringRequest& WithClusterName(Aws::String&& value) { SetClusterName(std::move(value)); return *this;}
83 inline GetKxConnectionStringRequest& WithClusterName(const char* value) { SetClusterName(value); return *this;}
85 private:
86
87 Aws::String m_userArn;
88 bool m_userArnHasBeenSet = false;
89
90 Aws::String m_environmentId;
91 bool m_environmentIdHasBeenSet = false;
92
93 Aws::String m_clusterName;
94 bool m_clusterNameHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace finspace
99} // namespace Aws
AWS_FINSPACE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetKxConnectionStringRequest & WithClusterName(const char *value)
GetKxConnectionStringRequest & WithClusterName(const Aws::String &value)
GetKxConnectionStringRequest & WithEnvironmentId(Aws::String &&value)
AWS_FINSPACE_API Aws::String SerializePayload() const override
GetKxConnectionStringRequest & WithUserArn(const Aws::String &value)
GetKxConnectionStringRequest & WithUserArn(const char *value)
GetKxConnectionStringRequest & WithClusterName(Aws::String &&value)
GetKxConnectionStringRequest & WithEnvironmentId(const Aws::String &value)
GetKxConnectionStringRequest & WithUserArn(Aws::String &&value)
GetKxConnectionStringRequest & WithEnvironmentId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String