AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteAppRequest.h
1
6#pragma once
7#include <aws/simspaceweaver/SimSpaceWeaver_EXPORTS.h>
8#include <aws/simspaceweaver/SimSpaceWeaverRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace SimSpaceWeaver
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_SIMSPACEWEAVER_API DeleteAppRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DeleteApp"; }
35
36 AWS_SIMSPACEWEAVER_API Aws::String SerializePayload() const override;
37
38 AWS_SIMSPACEWEAVER_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetApp() const{ return m_app; }
46 inline bool AppHasBeenSet() const { return m_appHasBeenSet; }
47 inline void SetApp(const Aws::String& value) { m_appHasBeenSet = true; m_app = value; }
48 inline void SetApp(Aws::String&& value) { m_appHasBeenSet = true; m_app = std::move(value); }
49 inline void SetApp(const char* value) { m_appHasBeenSet = true; m_app.assign(value); }
50 inline DeleteAppRequest& WithApp(const Aws::String& value) { SetApp(value); return *this;}
51 inline DeleteAppRequest& WithApp(Aws::String&& value) { SetApp(std::move(value)); return *this;}
52 inline DeleteAppRequest& WithApp(const char* value) { SetApp(value); return *this;}
54
56
59 inline const Aws::String& GetDomain() const{ return m_domain; }
60 inline bool DomainHasBeenSet() const { return m_domainHasBeenSet; }
61 inline void SetDomain(const Aws::String& value) { m_domainHasBeenSet = true; m_domain = value; }
62 inline void SetDomain(Aws::String&& value) { m_domainHasBeenSet = true; m_domain = std::move(value); }
63 inline void SetDomain(const char* value) { m_domainHasBeenSet = true; m_domain.assign(value); }
64 inline DeleteAppRequest& WithDomain(const Aws::String& value) { SetDomain(value); return *this;}
65 inline DeleteAppRequest& WithDomain(Aws::String&& value) { SetDomain(std::move(value)); return *this;}
66 inline DeleteAppRequest& WithDomain(const char* value) { SetDomain(value); return *this;}
68
70
73 inline const Aws::String& GetSimulation() const{ return m_simulation; }
74 inline bool SimulationHasBeenSet() const { return m_simulationHasBeenSet; }
75 inline void SetSimulation(const Aws::String& value) { m_simulationHasBeenSet = true; m_simulation = value; }
76 inline void SetSimulation(Aws::String&& value) { m_simulationHasBeenSet = true; m_simulation = std::move(value); }
77 inline void SetSimulation(const char* value) { m_simulationHasBeenSet = true; m_simulation.assign(value); }
78 inline DeleteAppRequest& WithSimulation(const Aws::String& value) { SetSimulation(value); return *this;}
79 inline DeleteAppRequest& WithSimulation(Aws::String&& value) { SetSimulation(std::move(value)); return *this;}
80 inline DeleteAppRequest& WithSimulation(const char* value) { SetSimulation(value); return *this;}
82 private:
83
84 Aws::String m_app;
85 bool m_appHasBeenSet = false;
86
87 Aws::String m_domain;
88 bool m_domainHasBeenSet = false;
89
90 Aws::String m_simulation;
91 bool m_simulationHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace SimSpaceWeaver
96} // namespace Aws
DeleteAppRequest & WithApp(const Aws::String &value)
DeleteAppRequest & WithDomain(const Aws::String &value)
void SetDomain(const Aws::String &value)
DeleteAppRequest & WithApp(Aws::String &&value)
DeleteAppRequest & WithApp(const char *value)
AWS_SIMSPACEWEAVER_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteAppRequest & WithSimulation(const char *value)
DeleteAppRequest & WithDomain(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
DeleteAppRequest & WithDomain(const char *value)
AWS_SIMSPACEWEAVER_API Aws::String SerializePayload() const override
DeleteAppRequest & WithSimulation(Aws::String &&value)
DeleteAppRequest & WithSimulation(const Aws::String &value)
void SetSimulation(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String