AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteLensShareRequest.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 <utility>
11#include <aws/core/utils/UUID.h>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace WellArchitected
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_WELLARCHITECTED_API DeleteLensShareRequest();
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 "DeleteLensShare"; }
36
37 AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override;
38
39 AWS_WELLARCHITECTED_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
44 inline const Aws::String& GetShareId() const{ return m_shareId; }
45 inline bool ShareIdHasBeenSet() const { return m_shareIdHasBeenSet; }
46 inline void SetShareId(const Aws::String& value) { m_shareIdHasBeenSet = true; m_shareId = value; }
47 inline void SetShareId(Aws::String&& value) { m_shareIdHasBeenSet = true; m_shareId = std::move(value); }
48 inline void SetShareId(const char* value) { m_shareIdHasBeenSet = true; m_shareId.assign(value); }
49 inline DeleteLensShareRequest& WithShareId(const Aws::String& value) { SetShareId(value); return *this;}
50 inline DeleteLensShareRequest& WithShareId(Aws::String&& value) { SetShareId(std::move(value)); return *this;}
51 inline DeleteLensShareRequest& WithShareId(const char* value) { SetShareId(value); return *this;}
53
55
56 inline const Aws::String& GetLensAlias() const{ return m_lensAlias; }
57 inline bool LensAliasHasBeenSet() const { return m_lensAliasHasBeenSet; }
58 inline void SetLensAlias(const Aws::String& value) { m_lensAliasHasBeenSet = true; m_lensAlias = value; }
59 inline void SetLensAlias(Aws::String&& value) { m_lensAliasHasBeenSet = true; m_lensAlias = std::move(value); }
60 inline void SetLensAlias(const char* value) { m_lensAliasHasBeenSet = true; m_lensAlias.assign(value); }
61 inline DeleteLensShareRequest& WithLensAlias(const Aws::String& value) { SetLensAlias(value); return *this;}
62 inline DeleteLensShareRequest& WithLensAlias(Aws::String&& value) { SetLensAlias(std::move(value)); return *this;}
63 inline DeleteLensShareRequest& WithLensAlias(const char* value) { SetLensAlias(value); return *this;}
65
67
68 inline const Aws::String& GetClientRequestToken() const{ return m_clientRequestToken; }
69 inline bool ClientRequestTokenHasBeenSet() const { return m_clientRequestTokenHasBeenSet; }
70 inline void SetClientRequestToken(const Aws::String& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = value; }
71 inline void SetClientRequestToken(Aws::String&& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = std::move(value); }
72 inline void SetClientRequestToken(const char* value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken.assign(value); }
74 inline DeleteLensShareRequest& WithClientRequestToken(Aws::String&& value) { SetClientRequestToken(std::move(value)); return *this;}
75 inline DeleteLensShareRequest& WithClientRequestToken(const char* value) { SetClientRequestToken(value); return *this;}
77 private:
78
79 Aws::String m_shareId;
80 bool m_shareIdHasBeenSet = false;
81
82 Aws::String m_lensAlias;
83 bool m_lensAliasHasBeenSet = false;
84
85 Aws::String m_clientRequestToken;
86 bool m_clientRequestTokenHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace WellArchitected
91} // namespace Aws
AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override
DeleteLensShareRequest & WithClientRequestToken(const Aws::String &value)
DeleteLensShareRequest & WithShareId(const Aws::String &value)
DeleteLensShareRequest & WithClientRequestToken(Aws::String &&value)
DeleteLensShareRequest & WithShareId(const char *value)
DeleteLensShareRequest & WithLensAlias(const Aws::String &value)
DeleteLensShareRequest & WithClientRequestToken(const char *value)
AWS_WELLARCHITECTED_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
virtual const char * GetServiceRequestName() const override
DeleteLensShareRequest & WithLensAlias(const char *value)
DeleteLensShareRequest & WithLensAlias(Aws::String &&value)
DeleteLensShareRequest & WithShareId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String