AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ThirdPartyJob.h
1
6#pragma once
7#include <aws/codepipeline/CodePipeline_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 CodePipeline
22{
23namespace Model
24{
25
34 {
35 public:
36 AWS_CODEPIPELINE_API ThirdPartyJob();
37 AWS_CODEPIPELINE_API ThirdPartyJob(Aws::Utils::Json::JsonView jsonValue);
38 AWS_CODEPIPELINE_API ThirdPartyJob& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_CODEPIPELINE_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
48 inline const Aws::String& GetClientId() const{ return m_clientId; }
49 inline bool ClientIdHasBeenSet() const { return m_clientIdHasBeenSet; }
50 inline void SetClientId(const Aws::String& value) { m_clientIdHasBeenSet = true; m_clientId = value; }
51 inline void SetClientId(Aws::String&& value) { m_clientIdHasBeenSet = true; m_clientId = std::move(value); }
52 inline void SetClientId(const char* value) { m_clientIdHasBeenSet = true; m_clientId.assign(value); }
53 inline ThirdPartyJob& WithClientId(const Aws::String& value) { SetClientId(value); return *this;}
54 inline ThirdPartyJob& WithClientId(Aws::String&& value) { SetClientId(std::move(value)); return *this;}
55 inline ThirdPartyJob& WithClientId(const char* value) { SetClientId(value); return *this;}
57
59
62 inline const Aws::String& GetJobId() const{ return m_jobId; }
63 inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; }
64 inline void SetJobId(const Aws::String& value) { m_jobIdHasBeenSet = true; m_jobId = value; }
65 inline void SetJobId(Aws::String&& value) { m_jobIdHasBeenSet = true; m_jobId = std::move(value); }
66 inline void SetJobId(const char* value) { m_jobIdHasBeenSet = true; m_jobId.assign(value); }
67 inline ThirdPartyJob& WithJobId(const Aws::String& value) { SetJobId(value); return *this;}
68 inline ThirdPartyJob& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;}
69 inline ThirdPartyJob& WithJobId(const char* value) { SetJobId(value); return *this;}
71 private:
72
73 Aws::String m_clientId;
74 bool m_clientIdHasBeenSet = false;
75
76 Aws::String m_jobId;
77 bool m_jobIdHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace CodePipeline
82} // namespace Aws
void SetJobId(const Aws::String &value)
ThirdPartyJob & WithJobId(Aws::String &&value)
AWS_CODEPIPELINE_API ThirdPartyJob()
AWS_CODEPIPELINE_API ThirdPartyJob(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetClientId() const
ThirdPartyJob & WithJobId(const char *value)
void SetClientId(Aws::String &&value)
ThirdPartyJob & WithClientId(const Aws::String &value)
AWS_CODEPIPELINE_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetJobId() const
void SetClientId(const Aws::String &value)
void SetJobId(Aws::String &&value)
ThirdPartyJob & WithJobId(const Aws::String &value)
ThirdPartyJob & WithClientId(const char *value)
ThirdPartyJob & WithClientId(Aws::String &&value)
AWS_CODEPIPELINE_API ThirdPartyJob & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue