AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeIntegrationsRequest.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/glue/GlueRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/glue/model/IntegrationFilter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Glue
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_GLUE_API DescribeIntegrationsRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "DescribeIntegrations"; }
33
34 AWS_GLUE_API Aws::String SerializePayload() const override;
35
37
38
40
43 inline const Aws::String& GetIntegrationIdentifier() const { return m_integrationIdentifier; }
44 inline bool IntegrationIdentifierHasBeenSet() const { return m_integrationIdentifierHasBeenSet; }
45 template<typename IntegrationIdentifierT = Aws::String>
46 void SetIntegrationIdentifier(IntegrationIdentifierT&& value) { m_integrationIdentifierHasBeenSet = true; m_integrationIdentifier = std::forward<IntegrationIdentifierT>(value); }
47 template<typename IntegrationIdentifierT = Aws::String>
48 DescribeIntegrationsRequest& WithIntegrationIdentifier(IntegrationIdentifierT&& value) { SetIntegrationIdentifier(std::forward<IntegrationIdentifierT>(value)); return *this;}
50
52
56 inline const Aws::String& GetMarker() const { return m_marker; }
57 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
58 template<typename MarkerT = Aws::String>
59 void SetMarker(MarkerT&& value) { m_markerHasBeenSet = true; m_marker = std::forward<MarkerT>(value); }
60 template<typename MarkerT = Aws::String>
61 DescribeIntegrationsRequest& WithMarker(MarkerT&& value) { SetMarker(std::forward<MarkerT>(value)); return *this;}
63
65
68 inline int GetMaxRecords() const { return m_maxRecords; }
69 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
70 inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; }
71 inline DescribeIntegrationsRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;}
73
75
80 inline const Aws::Vector<IntegrationFilter>& GetFilters() const { return m_filters; }
81 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
82 template<typename FiltersT = Aws::Vector<IntegrationFilter>>
83 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
84 template<typename FiltersT = Aws::Vector<IntegrationFilter>>
85 DescribeIntegrationsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
86 template<typename FiltersT = IntegrationFilter>
87 DescribeIntegrationsRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
89 private:
90
91 Aws::String m_integrationIdentifier;
92 bool m_integrationIdentifierHasBeenSet = false;
93
94 Aws::String m_marker;
95 bool m_markerHasBeenSet = false;
96
97 int m_maxRecords{0};
98 bool m_maxRecordsHasBeenSet = false;
99
101 bool m_filtersHasBeenSet = false;
102 };
103
104} // namespace Model
105} // namespace Glue
106} // 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