AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteProjectRequest.h
1
6#pragma once
7#include <aws/iotsitewise/IoTSiteWise_EXPORTS.h>
8#include <aws/iotsitewise/IoTSiteWiseRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11#include <aws/core/utils/UUID.h>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace IoTSiteWise
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_IOTSITEWISE_API DeleteProjectRequest();
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "DeleteProject"; }
36
37 AWS_IOTSITEWISE_API Aws::String SerializePayload() const override;
38
39 AWS_IOTSITEWISE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
46 inline const Aws::String& GetProjectId() const{ return m_projectId; }
47 inline bool ProjectIdHasBeenSet() const { return m_projectIdHasBeenSet; }
48 inline void SetProjectId(const Aws::String& value) { m_projectIdHasBeenSet = true; m_projectId = value; }
49 inline void SetProjectId(Aws::String&& value) { m_projectIdHasBeenSet = true; m_projectId = std::move(value); }
50 inline void SetProjectId(const char* value) { m_projectIdHasBeenSet = true; m_projectId.assign(value); }
51 inline DeleteProjectRequest& WithProjectId(const Aws::String& value) { SetProjectId(value); return *this;}
52 inline DeleteProjectRequest& WithProjectId(Aws::String&& value) { SetProjectId(std::move(value)); return *this;}
53 inline DeleteProjectRequest& WithProjectId(const char* value) { SetProjectId(value); return *this;}
55
57
62 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
63 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
64 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
65 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
66 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
67 inline DeleteProjectRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
68 inline DeleteProjectRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
69 inline DeleteProjectRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
71 private:
72
73 Aws::String m_projectId;
74 bool m_projectIdHasBeenSet = false;
75
76 Aws::String m_clientToken;
77 bool m_clientTokenHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace IoTSiteWise
82} // namespace Aws
DeleteProjectRequest & WithProjectId(Aws::String &&value)
DeleteProjectRequest & WithProjectId(const char *value)
DeleteProjectRequest & WithClientToken(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
AWS_IOTSITEWISE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteProjectRequest & WithClientToken(Aws::String &&value)
AWS_IOTSITEWISE_API Aws::String SerializePayload() const override
DeleteProjectRequest & WithClientToken(const char *value)
DeleteProjectRequest & WithProjectId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String