AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DisassociateApplicationFromEntitlementRequest.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14namespace AppStream
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 "DisassociateApplicationFromEntitlement"; }
31
33
35
36
40 inline const Aws::String& GetStackName() const{ return m_stackName; }
41
45 inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; }
46
50 inline void SetStackName(const Aws::String& value) { m_stackNameHasBeenSet = true; m_stackName = value; }
51
55 inline void SetStackName(Aws::String&& value) { m_stackNameHasBeenSet = true; m_stackName = std::move(value); }
56
60 inline void SetStackName(const char* value) { m_stackNameHasBeenSet = true; m_stackName.assign(value); }
61
66
70 inline DisassociateApplicationFromEntitlementRequest& WithStackName(Aws::String&& value) { SetStackName(std::move(value)); return *this;}
71
75 inline DisassociateApplicationFromEntitlementRequest& WithStackName(const char* value) { SetStackName(value); return *this;}
76
77
81 inline const Aws::String& GetEntitlementName() const{ return m_entitlementName; }
82
86 inline bool EntitlementNameHasBeenSet() const { return m_entitlementNameHasBeenSet; }
87
91 inline void SetEntitlementName(const Aws::String& value) { m_entitlementNameHasBeenSet = true; m_entitlementName = value; }
92
96 inline void SetEntitlementName(Aws::String&& value) { m_entitlementNameHasBeenSet = true; m_entitlementName = std::move(value); }
97
101 inline void SetEntitlementName(const char* value) { m_entitlementNameHasBeenSet = true; m_entitlementName.assign(value); }
102
107
112
117
118
122 inline const Aws::String& GetApplicationIdentifier() const{ return m_applicationIdentifier; }
123
127 inline bool ApplicationIdentifierHasBeenSet() const { return m_applicationIdentifierHasBeenSet; }
128
132 inline void SetApplicationIdentifier(const Aws::String& value) { m_applicationIdentifierHasBeenSet = true; m_applicationIdentifier = value; }
133
137 inline void SetApplicationIdentifier(Aws::String&& value) { m_applicationIdentifierHasBeenSet = true; m_applicationIdentifier = std::move(value); }
138
142 inline void SetApplicationIdentifier(const char* value) { m_applicationIdentifierHasBeenSet = true; m_applicationIdentifier.assign(value); }
143
148
153
158
159 private:
160
161 Aws::String m_stackName;
162 bool m_stackNameHasBeenSet = false;
163
164 Aws::String m_entitlementName;
165 bool m_entitlementNameHasBeenSet = false;
166
167 Aws::String m_applicationIdentifier;
168 bool m_applicationIdentifierHasBeenSet = false;
169 };
170
171} // namespace Model
172} // namespace AppStream
173} // namespace Aws
#define AWS_APPSTREAM_API
DisassociateApplicationFromEntitlementRequest & WithStackName(const Aws::String &value)
DisassociateApplicationFromEntitlementRequest & WithApplicationIdentifier(Aws::String &&value)
DisassociateApplicationFromEntitlementRequest & WithApplicationIdentifier(const Aws::String &value)
DisassociateApplicationFromEntitlementRequest & WithEntitlementName(const Aws::String &value)
DisassociateApplicationFromEntitlementRequest & WithEntitlementName(Aws::String &&value)
DisassociateApplicationFromEntitlementRequest & WithEntitlementName(const char *value)
AWS_APPSTREAM_API Aws::String SerializePayload() const override
DisassociateApplicationFromEntitlementRequest & WithStackName(Aws::String &&value)
AWS_APPSTREAM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DisassociateApplicationFromEntitlementRequest & WithStackName(const char *value)
DisassociateApplicationFromEntitlementRequest & WithApplicationIdentifier(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String