AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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() = default;
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 template<typename ClientIdT = Aws::String>
51 void SetClientId(ClientIdT&& value) { m_clientIdHasBeenSet = true; m_clientId = std::forward<ClientIdT>(value); }
52 template<typename ClientIdT = Aws::String>
53 ThirdPartyJob& WithClientId(ClientIdT&& value) { SetClientId(std::forward<ClientIdT>(value)); return *this;}
55
57
60 inline const Aws::String& GetJobId() const { return m_jobId; }
61 inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; }
62 template<typename JobIdT = Aws::String>
63 void SetJobId(JobIdT&& value) { m_jobIdHasBeenSet = true; m_jobId = std::forward<JobIdT>(value); }
64 template<typename JobIdT = Aws::String>
65 ThirdPartyJob& WithJobId(JobIdT&& value) { SetJobId(std::forward<JobIdT>(value)); return *this;}
67 private:
68
69 Aws::String m_clientId;
70 bool m_clientIdHasBeenSet = false;
71
72 Aws::String m_jobId;
73 bool m_jobIdHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace CodePipeline
78} // namespace Aws
AWS_CODEPIPELINE_API ThirdPartyJob(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetClientId() const
AWS_CODEPIPELINE_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetJobId() const
ThirdPartyJob & WithJobId(JobIdT &&value)
AWS_CODEPIPELINE_API ThirdPartyJob & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CODEPIPELINE_API ThirdPartyJob()=default
ThirdPartyJob & WithClientId(ClientIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue