AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteMethodRequest.h
1
6#pragma once
7#include <aws/apigateway/APIGateway_EXPORTS.h>
8#include <aws/apigateway/APIGatewayRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace APIGateway
15{
16namespace Model
17{
18
25 {
26 public:
27 AWS_APIGATEWAY_API DeleteMethodRequest();
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "DeleteMethod"; }
34
35 AWS_APIGATEWAY_API Aws::String SerializePayload() const override;
36
37
39
42 inline const Aws::String& GetRestApiId() const{ return m_restApiId; }
43 inline bool RestApiIdHasBeenSet() const { return m_restApiIdHasBeenSet; }
44 inline void SetRestApiId(const Aws::String& value) { m_restApiIdHasBeenSet = true; m_restApiId = value; }
45 inline void SetRestApiId(Aws::String&& value) { m_restApiIdHasBeenSet = true; m_restApiId = std::move(value); }
46 inline void SetRestApiId(const char* value) { m_restApiIdHasBeenSet = true; m_restApiId.assign(value); }
47 inline DeleteMethodRequest& WithRestApiId(const Aws::String& value) { SetRestApiId(value); return *this;}
48 inline DeleteMethodRequest& WithRestApiId(Aws::String&& value) { SetRestApiId(std::move(value)); return *this;}
49 inline DeleteMethodRequest& WithRestApiId(const char* value) { SetRestApiId(value); return *this;}
51
53
56 inline const Aws::String& GetResourceId() const{ return m_resourceId; }
57 inline bool ResourceIdHasBeenSet() const { return m_resourceIdHasBeenSet; }
58 inline void SetResourceId(const Aws::String& value) { m_resourceIdHasBeenSet = true; m_resourceId = value; }
59 inline void SetResourceId(Aws::String&& value) { m_resourceIdHasBeenSet = true; m_resourceId = std::move(value); }
60 inline void SetResourceId(const char* value) { m_resourceIdHasBeenSet = true; m_resourceId.assign(value); }
61 inline DeleteMethodRequest& WithResourceId(const Aws::String& value) { SetResourceId(value); return *this;}
62 inline DeleteMethodRequest& WithResourceId(Aws::String&& value) { SetResourceId(std::move(value)); return *this;}
63 inline DeleteMethodRequest& WithResourceId(const char* value) { SetResourceId(value); return *this;}
65
67
70 inline const Aws::String& GetHttpMethod() const{ return m_httpMethod; }
71 inline bool HttpMethodHasBeenSet() const { return m_httpMethodHasBeenSet; }
72 inline void SetHttpMethod(const Aws::String& value) { m_httpMethodHasBeenSet = true; m_httpMethod = value; }
73 inline void SetHttpMethod(Aws::String&& value) { m_httpMethodHasBeenSet = true; m_httpMethod = std::move(value); }
74 inline void SetHttpMethod(const char* value) { m_httpMethodHasBeenSet = true; m_httpMethod.assign(value); }
75 inline DeleteMethodRequest& WithHttpMethod(const Aws::String& value) { SetHttpMethod(value); return *this;}
76 inline DeleteMethodRequest& WithHttpMethod(Aws::String&& value) { SetHttpMethod(std::move(value)); return *this;}
77 inline DeleteMethodRequest& WithHttpMethod(const char* value) { SetHttpMethod(value); return *this;}
79 private:
80
81 Aws::String m_restApiId;
82 bool m_restApiIdHasBeenSet = false;
83
84 Aws::String m_resourceId;
85 bool m_resourceIdHasBeenSet = false;
86
87 Aws::String m_httpMethod;
88 bool m_httpMethodHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace APIGateway
93} // namespace Aws
DeleteMethodRequest & WithHttpMethod(const Aws::String &value)
DeleteMethodRequest & WithHttpMethod(Aws::String &&value)
DeleteMethodRequest & WithResourceId(Aws::String &&value)
DeleteMethodRequest & WithRestApiId(const Aws::String &value)
void SetResourceId(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
DeleteMethodRequest & WithRestApiId(const char *value)
void SetHttpMethod(const Aws::String &value)
void SetRestApiId(const Aws::String &value)
AWS_APIGATEWAY_API Aws::String SerializePayload() const override
DeleteMethodRequest & WithRestApiId(Aws::String &&value)
DeleteMethodRequest & WithResourceId(const char *value)
DeleteMethodRequest & WithResourceId(const Aws::String &value)
DeleteMethodRequest & WithHttpMethod(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String