AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
TemporaryCredential.h
1
6#pragma once
7#include <aws/opsworks/OpsWorks_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 OpsWorks
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_OPSWORKS_API TemporaryCredential();
38 AWS_OPSWORKS_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 TemporaryCredential& WithUsername(const Aws::String& value) { SetUsername(value); return *this;}
51 inline TemporaryCredential& WithUsername(Aws::String&& value) { SetUsername(std::move(value)); return *this;}
52 inline TemporaryCredential& 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 TemporaryCredential& WithPassword(const Aws::String& value) { SetPassword(value); return *this;}
65 inline TemporaryCredential& WithPassword(Aws::String&& value) { SetPassword(std::move(value)); return *this;}
66 inline TemporaryCredential& WithPassword(const char* value) { SetPassword(value); return *this;}
68
70
76 inline int GetValidForInMinutes() const{ return m_validForInMinutes; }
77 inline bool ValidForInMinutesHasBeenSet() const { return m_validForInMinutesHasBeenSet; }
78 inline void SetValidForInMinutes(int value) { m_validForInMinutesHasBeenSet = true; m_validForInMinutes = value; }
79 inline TemporaryCredential& WithValidForInMinutes(int value) { SetValidForInMinutes(value); return *this;}
81
83
86 inline const Aws::String& GetInstanceId() const{ return m_instanceId; }
87 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
88 inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; }
89 inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); }
90 inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); }
91 inline TemporaryCredential& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
92 inline TemporaryCredential& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
93 inline TemporaryCredential& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
95 private:
96
97 Aws::String m_username;
98 bool m_usernameHasBeenSet = false;
99
100 Aws::String m_password;
101 bool m_passwordHasBeenSet = false;
102
103 int m_validForInMinutes;
104 bool m_validForInMinutesHasBeenSet = false;
105
106 Aws::String m_instanceId;
107 bool m_instanceIdHasBeenSet = false;
108 };
109
110} // namespace Model
111} // namespace OpsWorks
112} // namespace Aws
TemporaryCredential & WithUsername(Aws::String &&value)
void SetPassword(const Aws::String &value)
AWS_OPSWORKS_API TemporaryCredential(Aws::Utils::Json::JsonView jsonValue)
void SetInstanceId(const Aws::String &value)
TemporaryCredential & WithPassword(Aws::String &&value)
TemporaryCredential & WithPassword(const char *value)
TemporaryCredential & WithInstanceId(const Aws::String &value)
TemporaryCredential & WithInstanceId(Aws::String &&value)
TemporaryCredential & WithInstanceId(const char *value)
TemporaryCredential & WithUsername(const char *value)
AWS_OPSWORKS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_OPSWORKS_API TemporaryCredential & operator=(Aws::Utils::Json::JsonView jsonValue)
TemporaryCredential & WithUsername(const Aws::String &value)
TemporaryCredential & WithPassword(const Aws::String &value)
TemporaryCredential & WithValidForInMinutes(int value)
void SetUsername(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue