AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeploymentApplicationConfig.h
1
6#pragma once
7#include <aws/robomaker/RoboMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/robomaker/model/DeploymentLaunchConfig.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 RoboMaker
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_ROBOMAKER_API DeploymentApplicationConfig();
39 AWS_ROBOMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetApplication() const{ return m_application; }
47 inline bool ApplicationHasBeenSet() const { return m_applicationHasBeenSet; }
48 inline void SetApplication(const Aws::String& value) { m_applicationHasBeenSet = true; m_application = value; }
49 inline void SetApplication(Aws::String&& value) { m_applicationHasBeenSet = true; m_application = std::move(value); }
50 inline void SetApplication(const char* value) { m_applicationHasBeenSet = true; m_application.assign(value); }
51 inline DeploymentApplicationConfig& WithApplication(const Aws::String& value) { SetApplication(value); return *this;}
52 inline DeploymentApplicationConfig& WithApplication(Aws::String&& value) { SetApplication(std::move(value)); return *this;}
53 inline DeploymentApplicationConfig& WithApplication(const char* value) { SetApplication(value); return *this;}
55
57
60 inline const Aws::String& GetApplicationVersion() const{ return m_applicationVersion; }
61 inline bool ApplicationVersionHasBeenSet() const { return m_applicationVersionHasBeenSet; }
62 inline void SetApplicationVersion(const Aws::String& value) { m_applicationVersionHasBeenSet = true; m_applicationVersion = value; }
63 inline void SetApplicationVersion(Aws::String&& value) { m_applicationVersionHasBeenSet = true; m_applicationVersion = std::move(value); }
64 inline void SetApplicationVersion(const char* value) { m_applicationVersionHasBeenSet = true; m_applicationVersion.assign(value); }
66 inline DeploymentApplicationConfig& WithApplicationVersion(Aws::String&& value) { SetApplicationVersion(std::move(value)); return *this;}
67 inline DeploymentApplicationConfig& WithApplicationVersion(const char* value) { SetApplicationVersion(value); return *this;}
69
71
74 inline const DeploymentLaunchConfig& GetLaunchConfig() const{ return m_launchConfig; }
75 inline bool LaunchConfigHasBeenSet() const { return m_launchConfigHasBeenSet; }
76 inline void SetLaunchConfig(const DeploymentLaunchConfig& value) { m_launchConfigHasBeenSet = true; m_launchConfig = value; }
77 inline void SetLaunchConfig(DeploymentLaunchConfig&& value) { m_launchConfigHasBeenSet = true; m_launchConfig = std::move(value); }
79 inline DeploymentApplicationConfig& WithLaunchConfig(DeploymentLaunchConfig&& value) { SetLaunchConfig(std::move(value)); return *this;}
81 private:
82
83 Aws::String m_application;
84 bool m_applicationHasBeenSet = false;
85
86 Aws::String m_applicationVersion;
87 bool m_applicationVersionHasBeenSet = false;
88
89 DeploymentLaunchConfig m_launchConfig;
90 bool m_launchConfigHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace RoboMaker
95} // namespace Aws
DeploymentApplicationConfig & WithApplication(Aws::String &&value)
DeploymentApplicationConfig & WithApplication(const Aws::String &value)
DeploymentApplicationConfig & WithLaunchConfig(DeploymentLaunchConfig &&value)
DeploymentApplicationConfig & WithApplicationVersion(const char *value)
DeploymentApplicationConfig & WithApplication(const char *value)
DeploymentApplicationConfig & WithApplicationVersion(const Aws::String &value)
AWS_ROBOMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
DeploymentApplicationConfig & WithLaunchConfig(const DeploymentLaunchConfig &value)
AWS_ROBOMAKER_API DeploymentApplicationConfig(Aws::Utils::Json::JsonView jsonValue)
DeploymentApplicationConfig & WithApplicationVersion(Aws::String &&value)
AWS_ROBOMAKER_API DeploymentApplicationConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetLaunchConfig(const DeploymentLaunchConfig &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue