AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListProfileSharesRequest.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/ShareStatus.h>
11#include <utility>
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 ListProfileSharesRequest();
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 "ListProfileShares"; }
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
46 inline const Aws::String& GetProfileArn() const{ return m_profileArn; }
47 inline bool ProfileArnHasBeenSet() const { return m_profileArnHasBeenSet; }
48 inline void SetProfileArn(const Aws::String& value) { m_profileArnHasBeenSet = true; m_profileArn = value; }
49 inline void SetProfileArn(Aws::String&& value) { m_profileArnHasBeenSet = true; m_profileArn = std::move(value); }
50 inline void SetProfileArn(const char* value) { m_profileArnHasBeenSet = true; m_profileArn.assign(value); }
51 inline ListProfileSharesRequest& WithProfileArn(const Aws::String& value) { SetProfileArn(value); return *this;}
52 inline ListProfileSharesRequest& WithProfileArn(Aws::String&& value) { SetProfileArn(std::move(value)); return *this;}
53 inline ListProfileSharesRequest& WithProfileArn(const char* value) { SetProfileArn(value); return *this;}
55
57
61 inline const Aws::String& GetSharedWithPrefix() const{ return m_sharedWithPrefix; }
62 inline bool SharedWithPrefixHasBeenSet() const { return m_sharedWithPrefixHasBeenSet; }
63 inline void SetSharedWithPrefix(const Aws::String& value) { m_sharedWithPrefixHasBeenSet = true; m_sharedWithPrefix = value; }
64 inline void SetSharedWithPrefix(Aws::String&& value) { m_sharedWithPrefixHasBeenSet = true; m_sharedWithPrefix = std::move(value); }
65 inline void SetSharedWithPrefix(const char* value) { m_sharedWithPrefixHasBeenSet = true; m_sharedWithPrefix.assign(value); }
67 inline ListProfileSharesRequest& WithSharedWithPrefix(Aws::String&& value) { SetSharedWithPrefix(std::move(value)); return *this;}
68 inline ListProfileSharesRequest& WithSharedWithPrefix(const char* value) { SetSharedWithPrefix(value); return *this;}
70
72
73 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
74 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
75 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
76 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
77 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
78 inline ListProfileSharesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
79 inline ListProfileSharesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
80 inline ListProfileSharesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
82
84
87 inline int GetMaxResults() const{ return m_maxResults; }
88 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
89 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
90 inline ListProfileSharesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
92
94
95 inline const ShareStatus& GetStatus() const{ return m_status; }
96 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
97 inline void SetStatus(const ShareStatus& value) { m_statusHasBeenSet = true; m_status = value; }
98 inline void SetStatus(ShareStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
99 inline ListProfileSharesRequest& WithStatus(const ShareStatus& value) { SetStatus(value); return *this;}
100 inline ListProfileSharesRequest& WithStatus(ShareStatus&& value) { SetStatus(std::move(value)); return *this;}
102 private:
103
104 Aws::String m_profileArn;
105 bool m_profileArnHasBeenSet = false;
106
107 Aws::String m_sharedWithPrefix;
108 bool m_sharedWithPrefixHasBeenSet = false;
109
110 Aws::String m_nextToken;
111 bool m_nextTokenHasBeenSet = false;
112
113 int m_maxResults;
114 bool m_maxResultsHasBeenSet = false;
115
116 ShareStatus m_status;
117 bool m_statusHasBeenSet = false;
118 };
119
120} // namespace Model
121} // namespace WellArchitected
122} // namespace Aws
ListProfileSharesRequest & WithProfileArn(Aws::String &&value)
ListProfileSharesRequest & WithStatus(const ShareStatus &value)
ListProfileSharesRequest & WithNextToken(const Aws::String &value)
ListProfileSharesRequest & WithNextToken(const char *value)
ListProfileSharesRequest & WithSharedWithPrefix(Aws::String &&value)
ListProfileSharesRequest & WithStatus(ShareStatus &&value)
ListProfileSharesRequest & WithSharedWithPrefix(const Aws::String &value)
AWS_WELLARCHITECTED_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListProfileSharesRequest & WithSharedWithPrefix(const char *value)
ListProfileSharesRequest & WithNextToken(Aws::String &&value)
AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
ListProfileSharesRequest & WithProfileArn(const Aws::String &value)
ListProfileSharesRequest & WithProfileArn(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String