AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DescribeApplicationInstanceDetailsRequest.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14namespace Panorama
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 "DescribeApplicationInstanceDetails"; }
31
33
34
38 inline const Aws::String& GetApplicationInstanceId() const{ return m_applicationInstanceId; }
39
43 inline bool ApplicationInstanceIdHasBeenSet() const { return m_applicationInstanceIdHasBeenSet; }
44
48 inline void SetApplicationInstanceId(const Aws::String& value) { m_applicationInstanceIdHasBeenSet = true; m_applicationInstanceId = value; }
49
53 inline void SetApplicationInstanceId(Aws::String&& value) { m_applicationInstanceIdHasBeenSet = true; m_applicationInstanceId = std::move(value); }
54
58 inline void SetApplicationInstanceId(const char* value) { m_applicationInstanceIdHasBeenSet = true; m_applicationInstanceId.assign(value); }
59
64
69
74
75 private:
76
77 Aws::String m_applicationInstanceId;
78 bool m_applicationInstanceIdHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace Panorama
83} // namespace Aws
#define AWS_PANORAMA_API
DescribeApplicationInstanceDetailsRequest & WithApplicationInstanceId(Aws::String &&value)
DescribeApplicationInstanceDetailsRequest & WithApplicationInstanceId(const char *value)
DescribeApplicationInstanceDetailsRequest & WithApplicationInstanceId(const Aws::String &value)
AWS_PANORAMA_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String