AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
Predecessor.h
1
6#pragma once
7#include <aws/glue/Glue_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 Glue
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_GLUE_API Predecessor() = default;
36 AWS_GLUE_API Predecessor(Aws::Utils::Json::JsonView jsonValue);
39
40
42
45 inline const Aws::String& GetJobName() const { return m_jobName; }
46 inline bool JobNameHasBeenSet() const { return m_jobNameHasBeenSet; }
47 template<typename JobNameT = Aws::String>
48 void SetJobName(JobNameT&& value) { m_jobNameHasBeenSet = true; m_jobName = std::forward<JobNameT>(value); }
49 template<typename JobNameT = Aws::String>
50 Predecessor& WithJobName(JobNameT&& value) { SetJobName(std::forward<JobNameT>(value)); return *this;}
52
54
57 inline const Aws::String& GetRunId() const { return m_runId; }
58 inline bool RunIdHasBeenSet() const { return m_runIdHasBeenSet; }
59 template<typename RunIdT = Aws::String>
60 void SetRunId(RunIdT&& value) { m_runIdHasBeenSet = true; m_runId = std::forward<RunIdT>(value); }
61 template<typename RunIdT = Aws::String>
62 Predecessor& WithRunId(RunIdT&& value) { SetRunId(std::forward<RunIdT>(value)); return *this;}
64 private:
65
66 Aws::String m_jobName;
67 bool m_jobNameHasBeenSet = false;
68
69 Aws::String m_runId;
70 bool m_runIdHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace Glue
75} // namespace Aws
const Aws::String & GetRunId() const
Definition Predecessor.h:57
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
void SetJobName(JobNameT &&value)
Definition Predecessor.h:48
AWS_GLUE_API Predecessor(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetJobName() const
Definition Predecessor.h:45
AWS_GLUE_API Predecessor & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetRunId(RunIdT &&value)
Definition Predecessor.h:60
Predecessor & WithJobName(JobNameT &&value)
Definition Predecessor.h:50
Predecessor & WithRunId(RunIdT &&value)
Definition Predecessor.h:62
AWS_GLUE_API Predecessor()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue