AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SnowflakeConnectorProfileCredentials.h
1
6#pragma once
7#include <aws/appflow/Appflow_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Appflow
22{
23namespace Model
24{
25
33 {
34 public:
38 AWS_APPFLOW_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetUsername() const{ return m_username; }
46 inline bool UsernameHasBeenSet() const { return m_usernameHasBeenSet; }
47 inline void SetUsername(const Aws::String& value) { m_usernameHasBeenSet = true; m_username = value; }
48 inline void SetUsername(Aws::String&& value) { m_usernameHasBeenSet = true; m_username = std::move(value); }
49 inline void SetUsername(const char* value) { m_usernameHasBeenSet = true; m_username.assign(value); }
50 inline SnowflakeConnectorProfileCredentials& WithUsername(const Aws::String& value) { SetUsername(value); return *this;}
51 inline SnowflakeConnectorProfileCredentials& WithUsername(Aws::String&& value) { SetUsername(std::move(value)); return *this;}
52 inline SnowflakeConnectorProfileCredentials& WithUsername(const char* value) { SetUsername(value); return *this;}
54
56
59 inline const Aws::String& GetPassword() const{ return m_password; }
60 inline bool PasswordHasBeenSet() const { return m_passwordHasBeenSet; }
61 inline void SetPassword(const Aws::String& value) { m_passwordHasBeenSet = true; m_password = value; }
62 inline void SetPassword(Aws::String&& value) { m_passwordHasBeenSet = true; m_password = std::move(value); }
63 inline void SetPassword(const char* value) { m_passwordHasBeenSet = true; m_password.assign(value); }
64 inline SnowflakeConnectorProfileCredentials& WithPassword(const Aws::String& value) { SetPassword(value); return *this;}
65 inline SnowflakeConnectorProfileCredentials& WithPassword(Aws::String&& value) { SetPassword(std::move(value)); return *this;}
66 inline SnowflakeConnectorProfileCredentials& WithPassword(const char* value) { SetPassword(value); return *this;}
68 private:
69
70 Aws::String m_username;
71 bool m_usernameHasBeenSet = false;
72
73 Aws::String m_password;
74 bool m_passwordHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace Appflow
79} // namespace Aws
AWS_APPFLOW_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_APPFLOW_API SnowflakeConnectorProfileCredentials & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_APPFLOW_API SnowflakeConnectorProfileCredentials(Aws::Utils::Json::JsonView jsonValue)
SnowflakeConnectorProfileCredentials & WithPassword(const Aws::String &value)
SnowflakeConnectorProfileCredentials & WithPassword(const char *value)
SnowflakeConnectorProfileCredentials & WithUsername(Aws::String &&value)
SnowflakeConnectorProfileCredentials & WithUsername(const char *value)
SnowflakeConnectorProfileCredentials & WithUsername(const Aws::String &value)
SnowflakeConnectorProfileCredentials & WithPassword(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue