AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
RepositoryCredentials.h
Go to the documentation of this file.
1
6#pragma once
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 ECS
22{
23namespace Model
24{
25
33 {
34 public:
39
40
49 inline const Aws::String& GetCredentialsParameter() const{ return m_credentialsParameter; }
50
59 inline bool CredentialsParameterHasBeenSet() const { return m_credentialsParameterHasBeenSet; }
60
69 inline void SetCredentialsParameter(const Aws::String& value) { m_credentialsParameterHasBeenSet = true; m_credentialsParameter = value; }
70
79 inline void SetCredentialsParameter(Aws::String&& value) { m_credentialsParameterHasBeenSet = true; m_credentialsParameter = std::move(value); }
80
89 inline void SetCredentialsParameter(const char* value) { m_credentialsParameterHasBeenSet = true; m_credentialsParameter.assign(value); }
90
100
109 inline RepositoryCredentials& WithCredentialsParameter(Aws::String&& value) { SetCredentialsParameter(std::move(value)); return *this;}
110
119 inline RepositoryCredentials& WithCredentialsParameter(const char* value) { SetCredentialsParameter(value); return *this;}
120
121 private:
122
123 Aws::String m_credentialsParameter;
124 bool m_credentialsParameterHasBeenSet = false;
125 };
126
127} // namespace Model
128} // namespace ECS
129} // namespace Aws
#define AWS_ECS_API
Definition: ECS_EXPORTS.h:28
AWS_ECS_API RepositoryCredentials(Aws::Utils::Json::JsonView jsonValue)
void SetCredentialsParameter(const Aws::String &value)
const Aws::String & GetCredentialsParameter() const
RepositoryCredentials & WithCredentialsParameter(const char *value)
void SetCredentialsParameter(Aws::String &&value)
AWS_ECS_API RepositoryCredentials & operator=(Aws::Utils::Json::JsonView jsonValue)
RepositoryCredentials & WithCredentialsParameter(Aws::String &&value)
AWS_ECS_API Aws::Utils::Json::JsonValue Jsonize() const
RepositoryCredentials & WithCredentialsParameter(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String