AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DeleteGitHubAccountTokenResult.h
Go to the documentation of this file.
1
6#pragma once
9#include <utility>
10
11namespace Aws
12{
13template<typename RESULT_TYPE>
14class AmazonWebServiceResult;
15
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21} // namespace Json
22} // namespace Utils
23namespace CodeDeploy
24{
25namespace Model
26{
34 {
35 public:
39
40
44 inline const Aws::String& GetTokenName() const{ return m_tokenName; }
45
49 inline void SetTokenName(const Aws::String& value) { m_tokenName = value; }
50
54 inline void SetTokenName(Aws::String&& value) { m_tokenName = std::move(value); }
55
59 inline void SetTokenName(const char* value) { m_tokenName.assign(value); }
60
64 inline DeleteGitHubAccountTokenResult& WithTokenName(const Aws::String& value) { SetTokenName(value); return *this;}
65
69 inline DeleteGitHubAccountTokenResult& WithTokenName(Aws::String&& value) { SetTokenName(std::move(value)); return *this;}
70
74 inline DeleteGitHubAccountTokenResult& WithTokenName(const char* value) { SetTokenName(value); return *this;}
75
76 private:
77
78 Aws::String m_tokenName;
79 };
80
81} // namespace Model
82} // namespace CodeDeploy
83} // namespace Aws
#define AWS_CODEDEPLOY_API
AWS_CODEDEPLOY_API DeleteGitHubAccountTokenResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DeleteGitHubAccountTokenResult & WithTokenName(const Aws::String &value)
AWS_CODEDEPLOY_API DeleteGitHubAccountTokenResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DeleteGitHubAccountTokenResult & WithTokenName(const char *value)
DeleteGitHubAccountTokenResult & WithTokenName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String