AWS SDK for C++

AWS SDK for C++ Version 1.11.690

Loading...
Searching...
No Matches
DescribeInboundIntegrationsRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/glue/GlueRequest.h>
9#include <aws/glue/Glue_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Glue {
15namespace Model {
16
20 public:
21 AWS_GLUE_API DescribeInboundIntegrationsRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeInboundIntegrations"; }
28
29 AWS_GLUE_API Aws::String SerializePayload() const override;
30
32
34
37 inline const Aws::String& GetIntegrationArn() const { return m_integrationArn; }
38 inline bool IntegrationArnHasBeenSet() const { return m_integrationArnHasBeenSet; }
39 template <typename IntegrationArnT = Aws::String>
40 void SetIntegrationArn(IntegrationArnT&& value) {
41 m_integrationArnHasBeenSet = true;
42 m_integrationArn = std::forward<IntegrationArnT>(value);
43 }
44 template <typename IntegrationArnT = Aws::String>
46 SetIntegrationArn(std::forward<IntegrationArnT>(value));
47 return *this;
48 }
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) {
60 m_markerHasBeenSet = true;
61 m_marker = std::forward<MarkerT>(value);
62 }
63 template <typename MarkerT = Aws::String>
65 SetMarker(std::forward<MarkerT>(value));
66 return *this;
67 }
69
71
74 inline int GetMaxRecords() const { return m_maxRecords; }
75 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
76 inline void SetMaxRecords(int value) {
77 m_maxRecordsHasBeenSet = true;
78 m_maxRecords = value;
79 }
81 SetMaxRecords(value);
82 return *this;
83 }
85
87
90 inline const Aws::String& GetTargetArn() const { return m_targetArn; }
91 inline bool TargetArnHasBeenSet() const { return m_targetArnHasBeenSet; }
92 template <typename TargetArnT = Aws::String>
93 void SetTargetArn(TargetArnT&& value) {
94 m_targetArnHasBeenSet = true;
95 m_targetArn = std::forward<TargetArnT>(value);
96 }
97 template <typename TargetArnT = Aws::String>
99 SetTargetArn(std::forward<TargetArnT>(value));
100 return *this;
101 }
103 private:
104 Aws::String m_integrationArn;
105 bool m_integrationArnHasBeenSet = false;
106
107 Aws::String m_marker;
108 bool m_markerHasBeenSet = false;
109
110 int m_maxRecords{0};
111 bool m_maxRecordsHasBeenSet = false;
112
113 Aws::String m_targetArn;
114 bool m_targetArnHasBeenSet = false;
115};
116
117} // namespace Model
118} // namespace Glue
119} // namespace Aws
DescribeInboundIntegrationsRequest & WithTargetArn(TargetArnT &&value)
AWS_GLUE_API Aws::String SerializePayload() const override
DescribeInboundIntegrationsRequest & WithMaxRecords(int value)
DescribeInboundIntegrationsRequest & WithIntegrationArn(IntegrationArnT &&value)
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeInboundIntegrationsRequest & WithMarker(MarkerT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String