AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeConnectorsRequest.h
1
6#pragma once
7#include <aws/appflow/Appflow_EXPORTS.h>
8#include <aws/appflow/AppflowRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/appflow/model/ConnectorType.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Appflow
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_APPFLOW_API DescribeConnectorsRequest() = 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 "DescribeConnectors"; }
33
34 AWS_APPFLOW_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::Vector<ConnectorType>& GetConnectorTypes() const { return m_connectorTypes; }
42 inline bool ConnectorTypesHasBeenSet() const { return m_connectorTypesHasBeenSet; }
43 template<typename ConnectorTypesT = Aws::Vector<ConnectorType>>
44 void SetConnectorTypes(ConnectorTypesT&& value) { m_connectorTypesHasBeenSet = true; m_connectorTypes = std::forward<ConnectorTypesT>(value); }
45 template<typename ConnectorTypesT = Aws::Vector<ConnectorType>>
46 DescribeConnectorsRequest& WithConnectorTypes(ConnectorTypesT&& value) { SetConnectorTypes(std::forward<ConnectorTypesT>(value)); return *this;}
47 inline DescribeConnectorsRequest& AddConnectorTypes(ConnectorType value) { m_connectorTypesHasBeenSet = true; m_connectorTypes.push_back(value); return *this; }
49
51
55 inline int GetMaxResults() const { return m_maxResults; }
56 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
57 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
58 inline DescribeConnectorsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
60
62
65 inline const Aws::String& GetNextToken() const { return m_nextToken; }
66 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
67 template<typename NextTokenT = Aws::String>
68 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
69 template<typename NextTokenT = Aws::String>
70 DescribeConnectorsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
72 private:
73
74 Aws::Vector<ConnectorType> m_connectorTypes;
75 bool m_connectorTypesHasBeenSet = false;
76
77 int m_maxResults{0};
78 bool m_maxResultsHasBeenSet = false;
79
80 Aws::String m_nextToken;
81 bool m_nextTokenHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace Appflow
86} // namespace Aws
DescribeConnectorsRequest & WithConnectorTypes(ConnectorTypesT &&value)
DescribeConnectorsRequest & AddConnectorTypes(ConnectorType value)
DescribeConnectorsRequest & WithMaxResults(int value)
AWS_APPFLOW_API DescribeConnectorsRequest()=default
AWS_APPFLOW_API Aws::String SerializePayload() const override
const Aws::Vector< ConnectorType > & GetConnectorTypes() const
virtual const char * GetServiceRequestName() const override
DescribeConnectorsRequest & WithNextToken(NextTokenT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector