AWS SDK for C++

AWS SDK for C++ Version 1.11.695

Loading...
Searching...
No Matches
IdeConfiguration.h
1
6#pragma once
7#include <aws/codecatalyst/CodeCatalyst_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace CodeCatalyst {
20namespace Model {
21
29 public:
30 AWS_CODECATALYST_API IdeConfiguration() = default;
31 AWS_CODECATALYST_API IdeConfiguration(Aws::Utils::Json::JsonView jsonValue);
32 AWS_CODECATALYST_API IdeConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_CODECATALYST_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const Aws::String& GetRuntime() const { return m_runtime; }
41 inline bool RuntimeHasBeenSet() const { return m_runtimeHasBeenSet; }
42 template <typename RuntimeT = Aws::String>
43 void SetRuntime(RuntimeT&& value) {
44 m_runtimeHasBeenSet = true;
45 m_runtime = std::forward<RuntimeT>(value);
46 }
47 template <typename RuntimeT = Aws::String>
48 IdeConfiguration& WithRuntime(RuntimeT&& value) {
49 SetRuntime(std::forward<RuntimeT>(value));
50 return *this;
51 }
53
55
60 inline const Aws::String& GetName() const { return m_name; }
61 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
62 template <typename NameT = Aws::String>
63 void SetName(NameT&& value) {
64 m_nameHasBeenSet = true;
65 m_name = std::forward<NameT>(value);
66 }
67 template <typename NameT = Aws::String>
68 IdeConfiguration& WithName(NameT&& value) {
69 SetName(std::forward<NameT>(value));
70 return *this;
71 }
73 private:
74 Aws::String m_runtime;
75 bool m_runtimeHasBeenSet = false;
76
77 Aws::String m_name;
78 bool m_nameHasBeenSet = false;
79};
80
81} // namespace Model
82} // namespace CodeCatalyst
83} // namespace Aws
IdeConfiguration & WithName(NameT &&value)
IdeConfiguration & WithRuntime(RuntimeT &&value)
AWS_CODECATALYST_API IdeConfiguration()=default
AWS_CODECATALYST_API IdeConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CODECATALYST_API IdeConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_CODECATALYST_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue