AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
DescribeIntegrationsRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/glue/GlueRequest.h>
10#include <aws/glue/Glue_EXPORTS.h>
11#include <aws/glue/model/IntegrationFilter.h>
12
13#include <utility>
14
15namespace Aws {
16namespace Glue {
17namespace Model {
18
22 public:
23 AWS_GLUE_API DescribeIntegrationsRequest() = default;
24
25 // Service request name is the Operation name which will send this request out,
26 // each operation should has unique request name, so that we can get operation's name from this request.
27 // Note: this is not true for response, multiple operations may have the same response name,
28 // so we can not get operation's name from response.
29 inline virtual const char* GetServiceRequestName() const override { return "DescribeIntegrations"; }
30
31 AWS_GLUE_API Aws::String SerializePayload() const override;
32
34
36
39 inline const Aws::String& GetIntegrationIdentifier() const { return m_integrationIdentifier; }
40 inline bool IntegrationIdentifierHasBeenSet() const { return m_integrationIdentifierHasBeenSet; }
41 template <typename IntegrationIdentifierT = Aws::String>
42 void SetIntegrationIdentifier(IntegrationIdentifierT&& value) {
43 m_integrationIdentifierHasBeenSet = true;
44 m_integrationIdentifier = std::forward<IntegrationIdentifierT>(value);
45 }
46 template <typename IntegrationIdentifierT = Aws::String>
47 DescribeIntegrationsRequest& WithIntegrationIdentifier(IntegrationIdentifierT&& value) {
48 SetIntegrationIdentifier(std::forward<IntegrationIdentifierT>(value));
49 return *this;
50 }
52
54
58 inline const Aws::String& GetMarker() const { return m_marker; }
59 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
60 template <typename MarkerT = Aws::String>
61 void SetMarker(MarkerT&& value) {
62 m_markerHasBeenSet = true;
63 m_marker = std::forward<MarkerT>(value);
64 }
65 template <typename MarkerT = Aws::String>
67 SetMarker(std::forward<MarkerT>(value));
68 return *this;
69 }
71
73
76 inline int GetMaxRecords() const { return m_maxRecords; }
77 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
78 inline void SetMaxRecords(int value) {
79 m_maxRecordsHasBeenSet = true;
80 m_maxRecords = value;
81 }
83 SetMaxRecords(value);
84 return *this;
85 }
87
89
94 inline const Aws::Vector<IntegrationFilter>& GetFilters() const { return m_filters; }
95 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
96 template <typename FiltersT = Aws::Vector<IntegrationFilter>>
97 void SetFilters(FiltersT&& value) {
98 m_filtersHasBeenSet = true;
99 m_filters = std::forward<FiltersT>(value);
100 }
101 template <typename FiltersT = Aws::Vector<IntegrationFilter>>
103 SetFilters(std::forward<FiltersT>(value));
104 return *this;
105 }
106 template <typename FiltersT = IntegrationFilter>
108 m_filtersHasBeenSet = true;
109 m_filters.emplace_back(std::forward<FiltersT>(value));
110 return *this;
111 }
113 private:
114 Aws::String m_integrationIdentifier;
115
116 Aws::String m_marker;
117
118 int m_maxRecords{0};
119
121 bool m_integrationIdentifierHasBeenSet = false;
122 bool m_markerHasBeenSet = false;
123 bool m_maxRecordsHasBeenSet = false;
124 bool m_filtersHasBeenSet = false;
125};
126
127} // namespace Model
128} // namespace Glue
129} // namespace Aws
virtual const char * GetServiceRequestName() const override
DescribeIntegrationsRequest & WithIntegrationIdentifier(IntegrationIdentifierT &&value)
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeIntegrationsRequest & WithMaxRecords(int value)
const Aws::Vector< IntegrationFilter > & GetFilters() const
DescribeIntegrationsRequest & WithMarker(MarkerT &&value)
DescribeIntegrationsRequest & AddFilters(FiltersT &&value)
DescribeIntegrationsRequest & WithFilters(FiltersT &&value)
AWS_GLUE_API Aws::String SerializePayload() const override
AWS_GLUE_API DescribeIntegrationsRequest()=default
void SetIntegrationIdentifier(IntegrationIdentifierT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector