AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeEventSubscriptionsRequest.h
1
6#pragma once
7#include <aws/redshift/Redshift_EXPORTS.h>
8#include <aws/redshift/RedshiftRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Redshift
16{
17namespace Model
18{
19
26 {
27 public:
28 AWS_REDSHIFT_API DescribeEventSubscriptionsRequest() = default;
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DescribeEventSubscriptions"; }
35
36 AWS_REDSHIFT_API Aws::String SerializePayload() const override;
37
38 protected:
39 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
40
41 public:
42
44
48 inline const Aws::String& GetSubscriptionName() const { return m_subscriptionName; }
49 inline bool SubscriptionNameHasBeenSet() const { return m_subscriptionNameHasBeenSet; }
50 template<typename SubscriptionNameT = Aws::String>
51 void SetSubscriptionName(SubscriptionNameT&& value) { m_subscriptionNameHasBeenSet = true; m_subscriptionName = std::forward<SubscriptionNameT>(value); }
52 template<typename SubscriptionNameT = Aws::String>
53 DescribeEventSubscriptionsRequest& WithSubscriptionName(SubscriptionNameT&& value) { SetSubscriptionName(std::forward<SubscriptionNameT>(value)); return *this;}
55
57
65 inline int GetMaxRecords() const { return m_maxRecords; }
66 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
67 inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; }
68 inline DescribeEventSubscriptionsRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;}
70
72
80 inline const Aws::String& GetMarker() const { return m_marker; }
81 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
82 template<typename MarkerT = Aws::String>
83 void SetMarker(MarkerT&& value) { m_markerHasBeenSet = true; m_marker = std::forward<MarkerT>(value); }
84 template<typename MarkerT = Aws::String>
85 DescribeEventSubscriptionsRequest& WithMarker(MarkerT&& value) { SetMarker(std::forward<MarkerT>(value)); return *this;}
87
89
98 inline const Aws::Vector<Aws::String>& GetTagKeys() const { return m_tagKeys; }
99 inline bool TagKeysHasBeenSet() const { return m_tagKeysHasBeenSet; }
100 template<typename TagKeysT = Aws::Vector<Aws::String>>
101 void SetTagKeys(TagKeysT&& value) { m_tagKeysHasBeenSet = true; m_tagKeys = std::forward<TagKeysT>(value); }
102 template<typename TagKeysT = Aws::Vector<Aws::String>>
103 DescribeEventSubscriptionsRequest& WithTagKeys(TagKeysT&& value) { SetTagKeys(std::forward<TagKeysT>(value)); return *this;}
104 template<typename TagKeysT = Aws::String>
105 DescribeEventSubscriptionsRequest& AddTagKeys(TagKeysT&& value) { m_tagKeysHasBeenSet = true; m_tagKeys.emplace_back(std::forward<TagKeysT>(value)); return *this; }
107
109
118 inline const Aws::Vector<Aws::String>& GetTagValues() const { return m_tagValues; }
119 inline bool TagValuesHasBeenSet() const { return m_tagValuesHasBeenSet; }
120 template<typename TagValuesT = Aws::Vector<Aws::String>>
121 void SetTagValues(TagValuesT&& value) { m_tagValuesHasBeenSet = true; m_tagValues = std::forward<TagValuesT>(value); }
122 template<typename TagValuesT = Aws::Vector<Aws::String>>
123 DescribeEventSubscriptionsRequest& WithTagValues(TagValuesT&& value) { SetTagValues(std::forward<TagValuesT>(value)); return *this;}
124 template<typename TagValuesT = Aws::String>
125 DescribeEventSubscriptionsRequest& AddTagValues(TagValuesT&& value) { m_tagValuesHasBeenSet = true; m_tagValues.emplace_back(std::forward<TagValuesT>(value)); return *this; }
127 private:
128
129 Aws::String m_subscriptionName;
130 bool m_subscriptionNameHasBeenSet = false;
131
132 int m_maxRecords{0};
133 bool m_maxRecordsHasBeenSet = false;
134
135 Aws::String m_marker;
136 bool m_markerHasBeenSet = false;
137
138 Aws::Vector<Aws::String> m_tagKeys;
139 bool m_tagKeysHasBeenSet = false;
140
141 Aws::Vector<Aws::String> m_tagValues;
142 bool m_tagValuesHasBeenSet = false;
143 };
144
145} // namespace Model
146} // namespace Redshift
147} // namespace Aws
DescribeEventSubscriptionsRequest & AddTagValues(TagValuesT &&value)
DescribeEventSubscriptionsRequest & WithTagKeys(TagKeysT &&value)
AWS_REDSHIFT_API DescribeEventSubscriptionsRequest()=default
AWS_REDSHIFT_API Aws::String SerializePayload() const override
DescribeEventSubscriptionsRequest & WithSubscriptionName(SubscriptionNameT &&value)
DescribeEventSubscriptionsRequest & WithTagValues(TagValuesT &&value)
DescribeEventSubscriptionsRequest & AddTagKeys(TagKeysT &&value)
DescribeEventSubscriptionsRequest & WithMarker(MarkerT &&value)
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector