AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteSimulationApplicationRequest.h
1
6#pragma once
7#include <aws/robomaker/RoboMaker_EXPORTS.h>
8#include <aws/robomaker/RoboMakerRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace RoboMaker
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DeleteSimulationApplication"; }
31
32 AWS_ROBOMAKER_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetApplication() const{ return m_application; }
40 inline bool ApplicationHasBeenSet() const { return m_applicationHasBeenSet; }
41 inline void SetApplication(const Aws::String& value) { m_applicationHasBeenSet = true; m_application = value; }
42 inline void SetApplication(Aws::String&& value) { m_applicationHasBeenSet = true; m_application = std::move(value); }
43 inline void SetApplication(const char* value) { m_applicationHasBeenSet = true; m_application.assign(value); }
45 inline DeleteSimulationApplicationRequest& WithApplication(Aws::String&& value) { SetApplication(std::move(value)); return *this;}
46 inline DeleteSimulationApplicationRequest& WithApplication(const char* value) { SetApplication(value); return *this;}
48
50
53 inline const Aws::String& GetApplicationVersion() const{ return m_applicationVersion; }
54 inline bool ApplicationVersionHasBeenSet() const { return m_applicationVersionHasBeenSet; }
55 inline void SetApplicationVersion(const Aws::String& value) { m_applicationVersionHasBeenSet = true; m_applicationVersion = value; }
56 inline void SetApplicationVersion(Aws::String&& value) { m_applicationVersionHasBeenSet = true; m_applicationVersion = std::move(value); }
57 inline void SetApplicationVersion(const char* value) { m_applicationVersionHasBeenSet = true; m_applicationVersion.assign(value); }
60 inline DeleteSimulationApplicationRequest& WithApplicationVersion(const char* value) { SetApplicationVersion(value); return *this;}
62 private:
63
64 Aws::String m_application;
65 bool m_applicationHasBeenSet = false;
66
67 Aws::String m_applicationVersion;
68 bool m_applicationVersionHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace RoboMaker
73} // namespace Aws
DeleteSimulationApplicationRequest & WithApplication(const char *value)
AWS_ROBOMAKER_API Aws::String SerializePayload() const override
DeleteSimulationApplicationRequest & WithApplicationVersion(const Aws::String &value)
DeleteSimulationApplicationRequest & WithApplication(const Aws::String &value)
DeleteSimulationApplicationRequest & WithApplicationVersion(Aws::String &&value)
DeleteSimulationApplicationRequest & WithApplicationVersion(const char *value)
DeleteSimulationApplicationRequest & WithApplication(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String