AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListTemplateSharesRequest.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 ListTemplateSharesRequest() = default;
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 "ListTemplateShares"; }
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& GetTemplateArn() const { return m_templateArn; }
47 inline bool TemplateArnHasBeenSet() const { return m_templateArnHasBeenSet; }
48 template<typename TemplateArnT = Aws::String>
49 void SetTemplateArn(TemplateArnT&& value) { m_templateArnHasBeenSet = true; m_templateArn = std::forward<TemplateArnT>(value); }
50 template<typename TemplateArnT = Aws::String>
51 ListTemplateSharesRequest& WithTemplateArn(TemplateArnT&& value) { SetTemplateArn(std::forward<TemplateArnT>(value)); return *this;}
53
55
59 inline const Aws::String& GetSharedWithPrefix() const { return m_sharedWithPrefix; }
60 inline bool SharedWithPrefixHasBeenSet() const { return m_sharedWithPrefixHasBeenSet; }
61 template<typename SharedWithPrefixT = Aws::String>
62 void SetSharedWithPrefix(SharedWithPrefixT&& value) { m_sharedWithPrefixHasBeenSet = true; m_sharedWithPrefix = std::forward<SharedWithPrefixT>(value); }
63 template<typename SharedWithPrefixT = Aws::String>
64 ListTemplateSharesRequest& WithSharedWithPrefix(SharedWithPrefixT&& value) { SetSharedWithPrefix(std::forward<SharedWithPrefixT>(value)); return *this;}
66
68
69 inline const Aws::String& GetNextToken() const { return m_nextToken; }
70 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
71 template<typename NextTokenT = Aws::String>
72 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
73 template<typename NextTokenT = Aws::String>
74 ListTemplateSharesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
76
78
81 inline int GetMaxResults() const { return m_maxResults; }
82 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
83 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
84 inline ListTemplateSharesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
86
88
89 inline ShareStatus GetStatus() const { return m_status; }
90 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
91 inline void SetStatus(ShareStatus value) { m_statusHasBeenSet = true; m_status = value; }
92 inline ListTemplateSharesRequest& WithStatus(ShareStatus value) { SetStatus(value); return *this;}
94 private:
95
96 Aws::String m_templateArn;
97 bool m_templateArnHasBeenSet = false;
98
99 Aws::String m_sharedWithPrefix;
100 bool m_sharedWithPrefixHasBeenSet = false;
101
102 Aws::String m_nextToken;
103 bool m_nextTokenHasBeenSet = false;
104
105 int m_maxResults{0};
106 bool m_maxResultsHasBeenSet = false;
107
109 bool m_statusHasBeenSet = false;
110 };
111
112} // namespace Model
113} // namespace WellArchitected
114} // namespace Aws
ListTemplateSharesRequest & WithStatus(ShareStatus value)
AWS_WELLARCHITECTED_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListTemplateSharesRequest & WithSharedWithPrefix(SharedWithPrefixT &&value)
ListTemplateSharesRequest & WithTemplateArn(TemplateArnT &&value)
AWS_WELLARCHITECTED_API ListTemplateSharesRequest()=default
AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override
ListTemplateSharesRequest & WithNextToken(NextTokenT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String