AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteLensRequest.h
1
6#pragma once
7#include <aws/wellarchitected/WellArchitected_EXPORTS.h>
8#include <aws/wellarchitected/WellArchitectedRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/wellarchitected/model/LensStatusType.h>
11#include <utility>
12#include <aws/core/utils/UUID.h>
13
14namespace Aws
15{
16namespace Http
17{
18 class URI;
19} //namespace Http
20namespace WellArchitected
21{
22namespace Model
23{
24
28 {
29 public:
30 AWS_WELLARCHITECTED_API DeleteLensRequest();
31
32 // Service request name is the Operation name which will send this request out,
33 // each operation should has unique request name, so that we can get operation's name from this request.
34 // Note: this is not true for response, multiple operations may have the same response name,
35 // so we can not get operation's name from response.
36 inline virtual const char* GetServiceRequestName() const override { return "DeleteLens"; }
37
38 AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override;
39
40 AWS_WELLARCHITECTED_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
41
42
44
45 inline const Aws::String& GetLensAlias() const{ return m_lensAlias; }
46 inline bool LensAliasHasBeenSet() const { return m_lensAliasHasBeenSet; }
47 inline void SetLensAlias(const Aws::String& value) { m_lensAliasHasBeenSet = true; m_lensAlias = value; }
48 inline void SetLensAlias(Aws::String&& value) { m_lensAliasHasBeenSet = true; m_lensAlias = std::move(value); }
49 inline void SetLensAlias(const char* value) { m_lensAliasHasBeenSet = true; m_lensAlias.assign(value); }
50 inline DeleteLensRequest& WithLensAlias(const Aws::String& value) { SetLensAlias(value); return *this;}
51 inline DeleteLensRequest& WithLensAlias(Aws::String&& value) { SetLensAlias(std::move(value)); return *this;}
52 inline DeleteLensRequest& WithLensAlias(const char* value) { SetLensAlias(value); return *this;}
54
56
57 inline const Aws::String& GetClientRequestToken() const{ return m_clientRequestToken; }
58 inline bool ClientRequestTokenHasBeenSet() const { return m_clientRequestTokenHasBeenSet; }
59 inline void SetClientRequestToken(const Aws::String& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = value; }
60 inline void SetClientRequestToken(Aws::String&& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = std::move(value); }
61 inline void SetClientRequestToken(const char* value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken.assign(value); }
62 inline DeleteLensRequest& WithClientRequestToken(const Aws::String& value) { SetClientRequestToken(value); return *this;}
63 inline DeleteLensRequest& WithClientRequestToken(Aws::String&& value) { SetClientRequestToken(std::move(value)); return *this;}
64 inline DeleteLensRequest& WithClientRequestToken(const char* value) { SetClientRequestToken(value); return *this;}
66
68
71 inline const LensStatusType& GetLensStatus() const{ return m_lensStatus; }
72 inline bool LensStatusHasBeenSet() const { return m_lensStatusHasBeenSet; }
73 inline void SetLensStatus(const LensStatusType& value) { m_lensStatusHasBeenSet = true; m_lensStatus = value; }
74 inline void SetLensStatus(LensStatusType&& value) { m_lensStatusHasBeenSet = true; m_lensStatus = std::move(value); }
75 inline DeleteLensRequest& WithLensStatus(const LensStatusType& value) { SetLensStatus(value); return *this;}
76 inline DeleteLensRequest& WithLensStatus(LensStatusType&& value) { SetLensStatus(std::move(value)); return *this;}
78 private:
79
80 Aws::String m_lensAlias;
81 bool m_lensAliasHasBeenSet = false;
82
83 Aws::String m_clientRequestToken;
84 bool m_clientRequestTokenHasBeenSet = false;
85
86 LensStatusType m_lensStatus;
87 bool m_lensStatusHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace WellArchitected
92} // namespace Aws
void SetClientRequestToken(const Aws::String &value)
DeleteLensRequest & WithLensAlias(const Aws::String &value)
DeleteLensRequest & WithLensAlias(Aws::String &&value)
DeleteLensRequest & WithClientRequestToken(const char *value)
virtual const char * GetServiceRequestName() const override
AWS_WELLARCHITECTED_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteLensRequest & WithLensStatus(LensStatusType &&value)
DeleteLensRequest & WithClientRequestToken(Aws::String &&value)
AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override
DeleteLensRequest & WithClientRequestToken(const Aws::String &value)
DeleteLensRequest & WithLensAlias(const char *value)
DeleteLensRequest & WithLensStatus(const LensStatusType &value)
void SetLensStatus(const LensStatusType &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String