AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
EnvironmentDetailsEntity.h
1
6#pragma once
7#include <aws/deadline/Deadline_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/Document.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace deadline
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_DEADLINE_API EnvironmentDetailsEntity() = default;
38 AWS_DEADLINE_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetJobId() const { return m_jobId; }
46 inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; }
47 template<typename JobIdT = Aws::String>
48 void SetJobId(JobIdT&& value) { m_jobIdHasBeenSet = true; m_jobId = std::forward<JobIdT>(value); }
49 template<typename JobIdT = Aws::String>
50 EnvironmentDetailsEntity& WithJobId(JobIdT&& value) { SetJobId(std::forward<JobIdT>(value)); return *this;}
52
54
57 inline const Aws::String& GetEnvironmentId() const { return m_environmentId; }
58 inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; }
59 template<typename EnvironmentIdT = Aws::String>
60 void SetEnvironmentId(EnvironmentIdT&& value) { m_environmentIdHasBeenSet = true; m_environmentId = std::forward<EnvironmentIdT>(value); }
61 template<typename EnvironmentIdT = Aws::String>
62 EnvironmentDetailsEntity& WithEnvironmentId(EnvironmentIdT&& value) { SetEnvironmentId(std::forward<EnvironmentIdT>(value)); return *this;}
64
66
69 inline const Aws::String& GetSchemaVersion() const { return m_schemaVersion; }
70 inline bool SchemaVersionHasBeenSet() const { return m_schemaVersionHasBeenSet; }
71 template<typename SchemaVersionT = Aws::String>
72 void SetSchemaVersion(SchemaVersionT&& value) { m_schemaVersionHasBeenSet = true; m_schemaVersion = std::forward<SchemaVersionT>(value); }
73 template<typename SchemaVersionT = Aws::String>
74 EnvironmentDetailsEntity& WithSchemaVersion(SchemaVersionT&& value) { SetSchemaVersion(std::forward<SchemaVersionT>(value)); return *this;}
76
78
81 inline Aws::Utils::DocumentView GetTemplate() const { return m_template; }
82 inline bool TemplateHasBeenSet() const { return m_templateHasBeenSet; }
83 template<typename TemplateT = Aws::Utils::Document>
84 void SetTemplate(TemplateT&& value) { m_templateHasBeenSet = true; m_template = std::forward<TemplateT>(value); }
85 template<typename TemplateT = Aws::Utils::Document>
86 EnvironmentDetailsEntity& WithTemplate(TemplateT&& value) { SetTemplate(std::forward<TemplateT>(value)); return *this;}
88 private:
89
90 Aws::String m_jobId;
91 bool m_jobIdHasBeenSet = false;
92
93 Aws::String m_environmentId;
94 bool m_environmentIdHasBeenSet = false;
95
96 Aws::String m_schemaVersion;
97 bool m_schemaVersionHasBeenSet = false;
98
99 Aws::Utils::Document m_template;
100 bool m_templateHasBeenSet = false;
101 };
102
103} // namespace Model
104} // namespace deadline
105} // namespace Aws
AWS_DEADLINE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_DEADLINE_API EnvironmentDetailsEntity()=default
EnvironmentDetailsEntity & WithSchemaVersion(SchemaVersionT &&value)
EnvironmentDetailsEntity & WithEnvironmentId(EnvironmentIdT &&value)
EnvironmentDetailsEntity & WithTemplate(TemplateT &&value)
AWS_DEADLINE_API EnvironmentDetailsEntity & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_DEADLINE_API EnvironmentDetailsEntity(Aws::Utils::Json::JsonView jsonValue)
EnvironmentDetailsEntity & WithJobId(JobIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue