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/sms/SMS_EXPORTS.h>
8#include <aws/sms/SMSRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace SMS
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_SMS_API DeleteAppRequest();
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 "DeleteApp"; }
31
32 AWS_SMS_API Aws::String SerializePayload() const override;
33
35
36
38
41 inline const Aws::String& GetAppId() const{ return m_appId; }
42 inline bool AppIdHasBeenSet() const { return m_appIdHasBeenSet; }
43 inline void SetAppId(const Aws::String& value) { m_appIdHasBeenSet = true; m_appId = value; }
44 inline void SetAppId(Aws::String&& value) { m_appIdHasBeenSet = true; m_appId = std::move(value); }
45 inline void SetAppId(const char* value) { m_appIdHasBeenSet = true; m_appId.assign(value); }
46 inline DeleteAppRequest& WithAppId(const Aws::String& value) { SetAppId(value); return *this;}
47 inline DeleteAppRequest& WithAppId(Aws::String&& value) { SetAppId(std::move(value)); return *this;}
48 inline DeleteAppRequest& WithAppId(const char* value) { SetAppId(value); return *this;}
50
52
56 inline bool GetForceStopAppReplication() const{ return m_forceStopAppReplication; }
57 inline bool ForceStopAppReplicationHasBeenSet() const { return m_forceStopAppReplicationHasBeenSet; }
58 inline void SetForceStopAppReplication(bool value) { m_forceStopAppReplicationHasBeenSet = true; m_forceStopAppReplication = value; }
59 inline DeleteAppRequest& WithForceStopAppReplication(bool value) { SetForceStopAppReplication(value); return *this;}
61
63
67 inline bool GetForceTerminateApp() const{ return m_forceTerminateApp; }
68 inline bool ForceTerminateAppHasBeenSet() const { return m_forceTerminateAppHasBeenSet; }
69 inline void SetForceTerminateApp(bool value) { m_forceTerminateAppHasBeenSet = true; m_forceTerminateApp = value; }
70 inline DeleteAppRequest& WithForceTerminateApp(bool value) { SetForceTerminateApp(value); return *this;}
72 private:
73
74 Aws::String m_appId;
75 bool m_appIdHasBeenSet = false;
76
77 bool m_forceStopAppReplication;
78 bool m_forceStopAppReplicationHasBeenSet = false;
79
80 bool m_forceTerminateApp;
81 bool m_forceTerminateAppHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace SMS
86} // namespace Aws
DeleteAppRequest & WithForceTerminateApp(bool value)
const Aws::String & GetAppId() const
DeleteAppRequest & WithAppId(const Aws::String &value)
void SetAppId(Aws::String &&value)
void SetAppId(const Aws::String &value)
AWS_SMS_API Aws::String SerializePayload() const override
AWS_SMS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteAppRequest & WithAppId(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
void SetAppId(const char *value)
DeleteAppRequest & WithAppId(const char *value)
DeleteAppRequest & WithForceStopAppReplication(bool value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String