AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DescribeAppRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/simspaceweaver/SimSpaceWeaverRequest.h>
9#include <aws/simspaceweaver/SimSpaceWeaver_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace SimSpaceWeaver {
18namespace Model {
19
23 public:
24 AWS_SIMSPACEWEAVER_API DescribeAppRequest() = default;
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 "DescribeApp"; }
31
32 AWS_SIMSPACEWEAVER_API Aws::String SerializePayload() const override;
33
34 AWS_SIMSPACEWEAVER_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
35
37
40 inline const Aws::String& GetApp() const { return m_app; }
41 inline bool AppHasBeenSet() const { return m_appHasBeenSet; }
42 template <typename AppT = Aws::String>
43 void SetApp(AppT&& value) {
44 m_appHasBeenSet = true;
45 m_app = std::forward<AppT>(value);
46 }
47 template <typename AppT = Aws::String>
48 DescribeAppRequest& WithApp(AppT&& value) {
49 SetApp(std::forward<AppT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetDomain() const { return m_domain; }
59 inline bool DomainHasBeenSet() const { return m_domainHasBeenSet; }
60 template <typename DomainT = Aws::String>
61 void SetDomain(DomainT&& value) {
62 m_domainHasBeenSet = true;
63 m_domain = std::forward<DomainT>(value);
64 }
65 template <typename DomainT = Aws::String>
66 DescribeAppRequest& WithDomain(DomainT&& value) {
67 SetDomain(std::forward<DomainT>(value));
68 return *this;
69 }
71
73
76 inline const Aws::String& GetSimulation() const { return m_simulation; }
77 inline bool SimulationHasBeenSet() const { return m_simulationHasBeenSet; }
78 template <typename SimulationT = Aws::String>
79 void SetSimulation(SimulationT&& value) {
80 m_simulationHasBeenSet = true;
81 m_simulation = std::forward<SimulationT>(value);
82 }
83 template <typename SimulationT = Aws::String>
84 DescribeAppRequest& WithSimulation(SimulationT&& value) {
85 SetSimulation(std::forward<SimulationT>(value));
86 return *this;
87 }
89 private:
90 Aws::String m_app;
91
92 Aws::String m_domain;
93
94 Aws::String m_simulation;
95 bool m_appHasBeenSet = false;
96 bool m_domainHasBeenSet = false;
97 bool m_simulationHasBeenSet = false;
98};
99
100} // namespace Model
101} // namespace SimSpaceWeaver
102} // namespace Aws
DescribeAppRequest & WithSimulation(SimulationT &&value)
DescribeAppRequest & WithDomain(DomainT &&value)
AWS_SIMSPACEWEAVER_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
DescribeAppRequest & WithApp(AppT &&value)
AWS_SIMSPACEWEAVER_API DescribeAppRequest()=default
AWS_SIMSPACEWEAVER_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String