AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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#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 CodeCatalyst
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_CODECATALYST_API IdeConfiguration();
36 AWS_CODECATALYST_API IdeConfiguration(Aws::Utils::Json::JsonView jsonValue);
37 AWS_CODECATALYST_API IdeConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_CODECATALYST_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::String& GetRuntime() const{ return m_runtime; }
47 inline bool RuntimeHasBeenSet() const { return m_runtimeHasBeenSet; }
48 inline void SetRuntime(const Aws::String& value) { m_runtimeHasBeenSet = true; m_runtime = value; }
49 inline void SetRuntime(Aws::String&& value) { m_runtimeHasBeenSet = true; m_runtime = std::move(value); }
50 inline void SetRuntime(const char* value) { m_runtimeHasBeenSet = true; m_runtime.assign(value); }
51 inline IdeConfiguration& WithRuntime(const Aws::String& value) { SetRuntime(value); return *this;}
52 inline IdeConfiguration& WithRuntime(Aws::String&& value) { SetRuntime(std::move(value)); return *this;}
53 inline IdeConfiguration& WithRuntime(const char* value) { SetRuntime(value); return *this;}
55
57
62 inline const Aws::String& GetName() const{ return m_name; }
63 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
64 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
65 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
66 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
67 inline IdeConfiguration& WithName(const Aws::String& value) { SetName(value); return *this;}
68 inline IdeConfiguration& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
69 inline IdeConfiguration& WithName(const char* value) { SetName(value); return *this;}
71 private:
72
73 Aws::String m_runtime;
74 bool m_runtimeHasBeenSet = false;
75
76 Aws::String m_name;
77 bool m_nameHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace CodeCatalyst
82} // namespace Aws
void SetName(const Aws::String &value)
IdeConfiguration & WithName(Aws::String &&value)
void SetRuntime(const Aws::String &value)
IdeConfiguration & WithRuntime(const Aws::String &value)
IdeConfiguration & WithRuntime(const char *value)
AWS_CODECATALYST_API IdeConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CODECATALYST_API IdeConfiguration(Aws::Utils::Json::JsonView jsonValue)
IdeConfiguration & WithRuntime(Aws::String &&value)
IdeConfiguration & WithName(const char *value)
AWS_CODECATALYST_API Aws::Utils::Json::JsonValue Jsonize() const
IdeConfiguration & WithName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue